Skip to content

Commit f7edb97

Browse files
Merge pull request #744 from samply/eval-measure-script
Allow For Spaces in CQL File Path
2 parents 9bbc360 + 88dc464 commit f7edb97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evaluate-measure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ BASE=$1
121121
[[ -z "$BASE" ]] && usage
122122

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

0 commit comments

Comments
 (0)