From 2f354dda595c6023968427107da747753674ca53 Mon Sep 17 00:00:00 2001 From: Pascal Obry Date: Wed, 3 Dec 2014 08:54:45 +0100 Subject: [PATCH] Do not output double quote for .cloudfuse content. Using quote here result in authentication failure. --- hubic_token | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hubic_token b/hubic_token index 4b842c9..580c067 100755 --- a/hubic_token +++ b/hubic_token @@ -551,6 +551,6 @@ echo "${MSG_SUCCESS}" >&2 echo >&2 echo >&2 echo "${MSG_HEAD_RESULT}" -echo "client_id=\"${client_id}\"" -echo "client_secret=\"${client_secret}\"" -echo "refresh_token=\"${refresh_token}\"" +echo "client_id=${client_id}" +echo "client_secret=${client_secret}" +echo "refresh_token=${refresh_token}"