Skip to content

Commit

Permalink
Fixed unbound variable warnings (#296)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Dec 30, 2021
1 parent 000d3cf commit 00f80ef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions entrypoint.sh
Expand Up @@ -132,6 +132,8 @@ else
else
echo "::set-output name=any_changed::false"
fi

OTHER_CHANGED=""

if [[ -n $ALL_OTHER_CHANGED ]]; then
if [[ -n "$UNIQUE_ALL_CHANGED" ]]; then
Expand Down Expand Up @@ -160,6 +162,8 @@ else
else
echo "::set-output name=any_modified::false"
fi

OTHER_MODIFIED=""

if [[ -n $ALL_OTHER_MODIFIED ]]; then
if [[ -n "$UNIQUE_ALL_MODIFIED" ]]; then
Expand Down Expand Up @@ -188,6 +192,8 @@ else
else
echo "::set-output name=any_deleted::false"
fi

OTHER_DELETED=""

if [[ -n $ALL_OTHER_DELETED ]]; then
if [[ -n "$UNIQUE_ALL_DELETED" ]]; then
Expand Down

0 comments on commit 00f80ef

Please sign in to comment.