Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian Rust
86b137aa6b added: pkg helper 2022-07-10 12:46:55 +02:00
Sebastian Rust
25ad8e668e added: https://aur.archlinux.org/plog.git 2022-07-10 12:46:02 +02:00
3 changed files with 12 additions and 0 deletions

3
.gitmodules vendored
View File

@@ -43,3 +43,6 @@
[submodule "pdfsam"] [submodule "pdfsam"]
path = pdfsam path = pdfsam
url = https://aur.archlinux.org/pdfsam.git url = https://aur.archlinux.org/pdfsam.git
[submodule "plog"]
path = plog
url = https://aur.archlinux.org/plog.git

1
plog Submodule

Submodule plog added at 433508aea4

8
tasks.py Normal file
View File

@@ -0,0 +1,8 @@
from invoke import task
@task
def add(c, url, name=None):
if name is None:
name = url
c.run(f"git submodule add {url}")
c.run(f"git commit -am 'added: {name}'")