Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
update(chart): Make var RECORD_VIDEO lowercase before comparison (Sel…
Browse files Browse the repository at this point in the history
  • Loading branch information
Doofus100500 authored Feb 7, 2024
1 parent 3e1b53b commit 6eab711
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ curl --retry 3 -k -X POST \

RECORD_VIDEO=$(jq -r '.data.session.capabilities | fromjson | ."se:recordVideo"' /tmp/graphQL_$SESSION_ID.json)

if [ "${RECORD_VIDEO}" = "false" ]; then
if [ "${RECORD_VIDEO,,}" = "false" ]; then
echo "${RECORD_VIDEO}"
else
echo true
Expand Down

0 comments on commit 6eab711

Please sign in to comment.