From 7541a67566ddf002dd1808046334014689190088 Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Fri, 25 Sep 2020 10:46:36 +0100 Subject: [PATCH] Wraps strings in double quotes --- bin/.bin/corp_curl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/.bin/corp_curl b/bin/.bin/corp_curl index 2a58da97..59ef2f82 100755 --- a/bin/.bin/corp_curl +++ b/bin/.bin/corp_curl @@ -27,6 +27,6 @@ get_password(){ } -username= -password=$(get_password) +username="" +password="$(get_password)" curl --ntlm --negotiate -u "$(get_username):$(get_password)" "$@"