summaryrefslogtreecommitdiffstats
path: root/auth/sample/bin/service.sh
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-09-06 13:27:15 -0500
committerInstrumental <jonathan.gathman@att.com>2018-09-06 13:27:24 -0500
commit6095e295c4eaef595fefe84c89233c5d87912dd7 (patch)
tree923eb3b22d69da2b3d7c323104e1f61991c6d545 /auth/sample/bin/service.sh
parent08a5c4369d685bcd831d4987a8be9d6c107dbb31 (diff)
remove quotes Java Props
Issue-ID: AAF-420 Change-Id: Id0c0ee18970db397063a47d4a41e7e794a20c3ea Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/sample/bin/service.sh')
-rw-r--r--auth/sample/bin/service.sh2
1 files changed, 1 insertions, 1 deletions
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