Fixing the problems I have introduced in my last change.

This commit is contained in:
2024-08-27 12:59:41 -05:00
parent a6b7fc7afe
commit 44dc8a4254
5 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ jqQuery=".\"${symbol}\".symbol"
symbolCheck=$(jq -r ${jqQuery} < temp/quote.${symbol}.tmp.$$.json)
if [[ "${symbol}" != "${symbolCheck}" ]]; then
errMsg="ERROR: THE RESPONSE IS INCORRECT! Symbol: _${symbol}_ Check: _${symbolCheck}_ check file _temp/quote.${symbol}.tmp.$$.json_"
throw ${errMsg} err 2
throw "${errMsg}" err 2
else
quoteFileName=$(date "+%Y-%m-%d %H_%M_%S")_quote.${symbol}.json
#echo writing to file "${outDir}/${quoteFileName}"