Skip to content

Commit

Permalink
remove /dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Jan 23, 2024
1 parent 44f7dc1 commit 4ebdce3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:
echo "Building ${BUILD_NAME}.deb"
dpkg-deb --build ${BUILD_NAME}
# Move the .deb file
mkdir -p ../debian/pool/main/${{ env.PROJECT }}/${VERSION}/
mv ${BUILD_NAME}.deb ../debian/pool/main/${{ env.PROJECT }}/${VERSION}/
# Move the .deb file, deleting the old one in the process
rm ../debian/pool/main/${{ env.PROJECT }}/*
mv ${BUILD_NAME}.deb ../debian/pool/main/${{ env.PROJECT }}/
# Remove the temporary folders
rm -rf ${BUILD_NAME}
# Update the Packages file
dpkg-scanpackages ../debian/pool/main/ /dev/null | gzip -9c > debian/dists/stable/main/binary-${arch}/Packages.gz
dpkg-scanpackages ../debian/pool/main/ | gzip -c > debian/dists/stable/main/binary-${arch}/Packages.gz
done
# Move out of tmp and delete it
Expand Down

0 comments on commit 4ebdce3

Please sign in to comment.