diff options
-rwxr-xr-x | livetimes.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/livetimes.sh b/livetimes.sh index a16bbc2..aa6af60 100755 --- a/livetimes.sh +++ b/livetimes.sh @@ -43,7 +43,7 @@ _stopsreturn() { # multiple stops returned in $stops so we will return stop names and codes so user can retry else for json in $(echo "${stops}" | jq -r '.[] | @base64'); do - result="$result Stop: $(_jq '.name') |" + result="$result Stop: $(_jq '.name') -" result="$result Code: $(_jq '.stop_id') |" done result=$(echo $result | sed 's/ |$//') |