aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2022-02-22 09:24:25 -0600
committerMatt Singleton <matt@xcolour.net>2022-02-22 09:24:25 -0600
commit91cb942849e5e272a4306071173330f6f2013096 (patch)
treec9224761536cb0a3ed734bd6b2bb80251862515b
parent0b7cfa2c81da8cc1a435620eabdd772a25de0f1f (diff)
fix curl command
-rwxr-xr-xdeploy.sh2
1 files changed, 1 insertions, 1 deletions
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'"