Commit 95fd753f authored by neil's avatar neil
Browse files

Merge pull request #109 from aaronbartell/master

Fix for parsing for IBM i v7.2
parents 90dda23f 7d91e35f
...@@ -1142,7 +1142,7 @@ issue() { ...@@ -1142,7 +1142,7 @@ issue() {
return 1 return 1
fi fi
status=$(echo $response | egrep -o '"status":"[^"]+"' | cut -d : -f 2 | tr -d '"') status=$(echo $response | egrep -o '"status":"[^"]*' | cut -d : -f 2 | tr -d '"')
if [ "$status" == "valid" ] ; then if [ "$status" == "valid" ] ; then
_info "Success" _info "Success"
_stopserver $serverproc _stopserver $serverproc
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment