From 91cb942849e5e272a4306071173330f6f2013096 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Tue, 22 Feb 2022 09:24:25 -0600 Subject: fix curl command --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 17fd382..a9ca903 100755 --- a/deploy.sh +++ b/deploy.sh @@ -13,7 +13,7 @@ fi if command -v wget > /dev/null; then DLCMD="wget -O" elif command -v curl > /dev/null; then - DLCMD="curl -o" + DLCMD="curl -Lo" fi if [ -z "$UNZIPCMD" ] || [ -z "$VIMCMD" ] || [ -z "$DLCMD" ]; then echo "requires 'unzip', 'vim', and either 'wget' or 'curl'" -- cgit v1.2.3