Skip to content

Commit

Permalink
Removing zip file after unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx authored Dec 12, 2024
1 parent 337eb74 commit 11d4114
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ find "$INPUT_PATH" -type f -name "*.zip" | while read -r zipfile; do
else
echo "Failed to unzip \"$zipfile\"."
fi

echo "Removing \"$zipfile\"."

rm $zipfile
done

echo "::endgroup::"
Expand Down

0 comments on commit 11d4114

Please sign in to comment.