diff options
author | Matt Singleton <matt@xcolour.net> | 2022-02-22 09:24:25 -0600 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2022-02-22 09:24:25 -0600 |
commit | 91cb942849e5e272a4306071173330f6f2013096 (patch) | |
tree | c9224761536cb0a3ed734bd6b2bb80251862515b | |
parent | 0b7cfa2c81da8cc1a435620eabdd772a25de0f1f (diff) |
fix curl command
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'" |