Make sure to compress the tar files when bundling for distribution

This commit is contained in:
Savanni D'Gerinel 2023-10-05 00:07:55 -04:00
parent 525b5389a1
commit 4200432e1f
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ mkdir -p dist
cp dashboard.desktop dist
cp ../target/release/dashboard dist
strip dist/dashboard
tar -cf dashboard.tgz dist/
tar -czf dashboard.tgz dist/

View File

@ -9,5 +9,5 @@ cp ../target/release/file-service dist
cp ../target/release/auth-cli dist
strip dist/file-service
strip dist/auth-cli
tar -cf file-service-${VERSION}.tar.gz dist/
tar -czf file-service-${VERSION}.tgz dist/