Update AUR updater script
This commit is contained in:
9
update-aur-pkgs.sh
Executable file
9
update-aur-pkgs.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
for pkg in pkgbuilds/* ; do
|
||||
git submodule update --remote "${pkg}"
|
||||
if git status --porcelain "${pkg}" | grep -q . ; then
|
||||
git add "${pkg}"
|
||||
git commit -m "aur: Update $(basename "${pkg}")"
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user