Skip to content

Commit

Permalink
Allow For Spaces in CQL File Path
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Jun 8, 2022
1 parent 9bbc360 commit 88dc464
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evaluate-measure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ BASE=$1
[[ -z "$BASE" ]] && usage

SUBJECT_TYPE_LOWER=$(echo $SUBJECT_TYPE | tr '[:upper:]' '[:lower:]')
DATA=$(cat ${FILE} | base64 | tr -d '\n')
DATA=$(base64 < "$FILE" | tr -d '\n')
LIBRARY_URI=$(uuidgen | tr '[:upper:]' '[:lower:]')
MEASURE_URI=$(uuidgen | tr '[:upper:]' '[:lower:]')

Expand Down

0 comments on commit 88dc464

Please sign in to comment.