From 4d9e077ccdbb9c53fc78ad532178272e9e7d0619 Mon Sep 17 00:00:00 2001 From: John N Underwood Date: Tue, 20 Nov 2018 13:24:09 -0500 Subject: [PATCH] add quotes in wget command --- Linux-instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linux-instructions.md b/Linux-instructions.md index 85304fe..096b016 100644 --- a/Linux-instructions.md +++ b/Linux-instructions.md @@ -46,7 +46,7 @@ for type in Bold Light Medium Regular Retina; do file_url="https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-${type}.ttf?raw=true" if [ ! -e "${file_path}" ]; then echo "wget -O $file_path $file_url" - wget -O "${file_path} ${file_url}" + wget -O "${file_path}" "${file_url}" else echo "Found existing file $file_path" fi;