1
0
Fork 0

bin: Unpack archive in aur helper

This commit is contained in:
Jeremy Kaplan 2024-07-08 14:14:54 -04:00
commit 9fe5df655d

View file

@ -2,4 +2,8 @@
set -exuo pipefail set -exuo pipefail
curl "https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz" -o "$1.tar.gz" TAR="$1.tar.gz"
curl "https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz" -o "${TAR}"
tar zxvf "${TAR}"
rm "${TAR}"