9 lines
235 B
Plaintext
9 lines
235 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Wrapper script to `aur sync`
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
||
|
GPGKEY=27DE40D9B8455C1B exec aur sync --makepkg-conf /etc/aurutils/makepkg.conf -c --sign "$@"
|