From 35c1e2ad614336a0cad2f9956a5571a6b939d343 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sat, 30 Oct 2021 20:21:14 -0700 Subject: [PATCH] bin/aur: Use more common curl instead of wget --- bin/aur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/aur b/bin/aur index dcc6fc8..4e624a3 100755 --- a/bin/aur +++ b/bin/aur @@ -2,4 +2,4 @@ set -exuo pipefail -wget "https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz" +curl "https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz" -o "$1.tar.gz"