Compare commits

...

3 Commits

Author SHA1 Message Date
Sebastian Rust 7b1d6bc047 added: plymouth-theme-arch-breeze-git 2022-07-10 13:26:17 +02:00
Sebastian Rust 64b5a44baf bump 2022-07-10 13:25:46 +02:00
Sebastian Rust e13e775ecb added: plymouth-git 2022-07-10 13:24:42 +02:00
5 changed files with 15 additions and 2 deletions
+6
View File
@@ -49,3 +49,9 @@
[submodule "scrub"]
path = scrub
url = https://aur.archlinux.org/scrub.git
[submodule "plymouth-git"]
path = plymouth-git
url = https://aur.archlinux.org/plymouth-git.git
[submodule "plymouth-theme-arch-breeze-git"]
path = plymouth-theme-arch-breeze-git
url = https://aur.archlinux.org/plymouth-theme-arch-breeze-git.git
+2
View File
@@ -27,3 +27,5 @@ members:
- directory: pdfsam
- directory: scrub
- directory: plog
- directory: plymouth-git
- directory: plymouth-theme-arch-breeze-git
Submodule
+1
Submodule plymouth-git added at e93c21dcc8
+5 -2
View File
@@ -9,8 +9,11 @@ def aur(c, name):
@task
def add(c, url, name=None):
if name is None:
name = url
c.run(f"git submodule add {url}")
ending = url.rfind('/') + 1
ending = ending.split(".")
name = ending[0]
c.run(f"git submodule add {url} {name}")
addyaml(c, name)
c.run(f"git commit -am 'added: {name}'")
@task