Skip to content

Commit da7a176

Browse files
committed
[skip ci] Fix existing file detection
1 parent 8f48aeb commit da7a176

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ runs:
4343
# If there's a preexisting Package.resolved, Git knows about it, and it's unmodified,
4444
# this action has nothing to do; a correct Dependabot configuration will already
4545
# process that file.
46-
if [[ -z "$(git -C "${PROJ}" status --porcelain --untracked-files=all --ignored=matching -- Package.resolved)" ]]; then
46+
if [[ -f "${PROJ}/Package.resolved" && \
47+
-z "$(git -C "${PROJ}" status --porcelain -uall --ignored -- Package.resolved)" ]]; then
4748
echo "Dependencies are autodetected when Package.resolved is committed, exiting."
4849
exit 0
4950
elif [[ -f "${PROJ}/Package.resolved" ]]; then

0 commit comments

Comments
 (0)