Skip to content

Commit b0e5112

Browse files
authored
Update int.cloudbuild.yaml
1 parent dbab5e6 commit b0e5112

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build/int.cloudbuild.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ steps:
3737
# Do not prune if changing tests themselves
3838
_INFRA_FOLDERS="build test .github"
3939
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."
40+
echo "${d%/}"
41+
echo "${_INFRA_FOLDERS}"
42+
if [[ "${_INFRA_FOLDERS}" =~ "${d%/}" ]]; then
43+
echo "Infrastructure folder ${d%/} has changed; no tests will be pruned."
4344
exit 0 # do not prune
4445
fi
4546
done < _changed_folders

0 commit comments

Comments
 (0)