Skip to content

Commit

Permalink
github: add quotes around variable
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Deziel <[email protected]>
  • Loading branch information
simondeziel committed May 2, 2024
1 parent e003dcf commit 91f82e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/image-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
echo "==> TEST: ${TEST_ID}"
VIRT_ENABLED=$(lxc query /1.0 | jq '.environment.driver | contains("qemu")')
if [ ${TYPE} = "vm" ] && [ "${VIRT_ENABLED}" != "true" ]; then
if [ "${TYPE}" = "vm" ] && [ "${VIRT_ENABLED}" != "true" ]; then
echo "==> FAIL: Virtualization is not supported"
exit 1
fi
Expand Down

0 comments on commit 91f82e6

Please sign in to comment.