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 539e508 commit 0b8d353Copy full SHA for 0b8d353
build/int.cloudbuild.yaml
@@ -38,8 +38,8 @@ steps:
38
_INFRA_FOLDERS="build test .github"
39
while read d; do
40
echo "${d%/}"
41
- if [[ ${_INFRA_FOLDERS} =~ ${d%/} ]]; then
42
- echo "Infrastructure folder ${d%/} has changed; no tests will be pruned."
+ if [[ "${_INFRA_FOLDERS}" =~ "$d%/" ]]; then
+ echo "Infrastructure folder $d%/ has changed; no tests will be pruned."
43
exit 0 # do not prune
44
fi
45
done < _changed_folders
0 commit comments