From: Jonathan Gathman Date: Thu, 6 Sep 2018 19:37:42 +0000 (+0000) Subject: Merge "Clean Sonar project name" X-Git-Tag: 2.1.2~62 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=aaf%2Fauthz.git;a=commitdiff_plain;h=8ecbd6158a801e524bc5681471bca4d6f3c58860;hp=e56fba2ab7ab398c5dc3dce4c0c900a5d26d503f Merge "Clean Sonar project name" --- diff --git a/auth/sample/bin/client.sh b/auth/sample/bin/client.sh index c0eb2191..a8b8b9a6 100644 --- a/auth/sample/bin/client.sh +++ b/auth/sample/bin/client.sh @@ -119,7 +119,7 @@ if [ ! "$CMD" = "" ]; then if [ "$ADD" = "Y" ]; then echo $2 >> $F else - sed -i.backup -e "s/\\(${1}.*=\\).*/\\1\"${2}\"/" $F + sed -i.backup -e "s/\\(${1}.*=\\).*/\\1${2}/" $F fi cat $F done diff --git a/auth/sample/bin/service.sh b/auth/sample/bin/service.sh index 8ce43fce..33dca67f 100644 --- a/auth/sample/bin/service.sh +++ b/auth/sample/bin/service.sh @@ -92,7 +92,7 @@ if [ ! "$CMD" = "" ]; then echo "$1=$2" >> $F else VALUE=${2//\//\\\/} - sed -i.backup -e "s/\(${1}=\).*/\1\"${VALUE}\"/" $F + sed -i.backup -e "s/\(${1}=\).*/\1${VALUE}/" $F fi cat $F done