Skip to content

Commit

Permalink
update(chart): Make var RECORD_VIDEO lowercase before comparison (#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doofus100500 committed Feb 7, 2024
1 parent 3e1b53b commit 6eab711
Showing 1 changed file with 1 addition and 1 deletion.
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.