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 dbab5e6 commit b0e5112Copy full SHA for b0e5112
build/int.cloudbuild.yaml
@@ -37,9 +37,10 @@ steps:
37
# Do not prune if changing tests themselves
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."
+ echo "${d%/}"
+ echo "${_INFRA_FOLDERS}"
+ if [[ "${_INFRA_FOLDERS}" =~ "${d%/}" ]]; then
43
+ echo "Infrastructure folder ${d%/} has changed; no tests will be pruned."
44
exit 0 # do not prune
45
fi
46
done < _changed_folders
0 commit comments