From 0829059ee42e1cf10393d8c40ab241693f2eda09 Mon Sep 17 00:00:00 2001 From: xperia64 Date: Fri, 16 Oct 2015 23:45:40 -0400 Subject: [PATCH] Wrap download arguments in quotes --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 5704a9ce23..df1fdcfa76 100755 --- a/install.sh +++ b/install.sh @@ -17,9 +17,9 @@ libVFile="./libversion" function download { if command -v curl > /dev/null 2>&1; then - curl -L -o $2 $1 + curl -L -o "$2" "$1" elif command -v wget > /dev/null 2>&1; then - wget -O $2 $1 + wget -O "$2" "$1" else echo "Please install either wget or curl to continue" exit 1