We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc27cad commit 110dd08Copy full SHA for 110dd08
.github/workflows/build.yml
@@ -1434,8 +1434,8 @@ jobs:
1434
echo "No digest found for platform ${platform}" >&2
1435
exit 1
1436
fi
1437
- digestContainsSpaces="$(echo ${THIS_STACKQL_DIGEST} | grep ' ')" || true
1438
- if [ "${digestContainsSpaces}" != "" ]; then
+ digestContainsSpaces="$(echo "${THIS_STACKQL_DIGEST}" | grep ' ')" || true
+ if [ "${digestContainsSpaces}" != "" ]; then`
1439
echo "Digest '${THIS_STACKQL_DIGEST}' contains spaces, as found for platform ${platform}" >&2
1440
1441
0 commit comments