Skip to content

Commit

Permalink
fix: rm null release file after release download
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar committed Mar 11, 2024
1 parent d164279 commit 7d90f30
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions download_pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ arch="$(dpkg --print-architecture)"
mkdir download
while read -r repo tag; do
gh release download --dir download --repo "$repo" "$tag"
if [ -e download/null]; then
rm download/null
fi
done < "$releases"

truncate -s 0 pkgs depends
Expand Down

0 comments on commit 7d90f30

Please sign in to comment.