Skip to content

Commit b19e54d

Browse files
authored
Fix changeset test (#4252)
1 parent 9d84acb commit b19e54d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/scripts/validate-changesets.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ has_changeset=0
88

99
while IFS= read -r file
1010
do
11+
if ! [[ -f $file ]]; then
12+
echo "$file was removed"
13+
continue
14+
fi
1115
echo $file
1216
if [[ $file == packages/sources/*/src/* || $file == packages/composites/*/src/* || $file == packages/targets/*/src/* ]]; then
1317
# echo "This PR contains an adapter src code change."

0 commit comments

Comments
 (0)