Add a script to update git aurutil packages.

This commit is contained in:
Tom Alexander
2023-07-14 13:18:49 -04:00
parent cd6d8f3f69
commit 6bde027c48
3 changed files with 30 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
#
# Update packages in aurutils with -git suffix.
#
# This has to be done manually because aurutils does not check for new git commits every time we run an update.
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
pacman -Slq custom | grep -E -- '-git$' | xargs aurutils-sync --no-ver --reset "$@"