added: aur task

This commit is contained in:
Sebastian Rust
2022-07-10 12:50:36 +02:00
parent cf8bb5ac74
commit c5e3eea64d

View File

@@ -11,3 +11,7 @@ def add(c, url, name=None):
name = url
c.run(f"git submodule add {url}")
c.run(f"git commit -am 'added: {name}'")
@task
def update(c):
c.run("git pull && git submodule update --init")