Skip to content

Commit abbd514

Browse files
authored
Update int.cloudbuild.yaml
1 parent c70c458 commit abbd514

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/int.cloudbuild.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ steps:
4343
fi
4444
done
4545
46-
for d in */; do
47-
if ! grep -q "^$d" _changed_folders && [[ "$d" != "test/" ]]; then
46+
for d in `find . -type d -name 'test' -prune -o -links 2 -printf '%P\n'`; do
47+
if ! grep -q "^$d" _changed_folders; then
4848
rm -rf $d;
4949
fi
5050
done

0 commit comments

Comments
 (0)