Compare commits
3 Commits
fc7ebde56f
...
7b1d6bc047
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b1d6bc047 | ||
|
|
64b5a44baf | ||
|
|
e13e775ecb |
6
.gitmodules
vendored
6
.gitmodules
vendored
@@ -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
|
||||
|
||||
@@ -27,3 +27,5 @@ members:
|
||||
- directory: pdfsam
|
||||
- directory: scrub
|
||||
- directory: plog
|
||||
- directory: plymouth-git
|
||||
- directory: plymouth-theme-arch-breeze-git
|
||||
|
||||
1
plymouth-git
Submodule
1
plymouth-git
Submodule
Submodule plymouth-git added at e93c21dcc8
1
plymouth-theme-arch-breeze-git
Submodule
1
plymouth-theme-arch-breeze-git
Submodule
Submodule plymouth-theme-arch-breeze-git added at 8dea2d960d
7
tasks.py
7
tasks.py
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user