Skip to content

Commit

Permalink
quiet make_tar_release.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Briand committed May 24, 2024
1 parent 4221d36 commit 8f88ff8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion make_tar_release.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

if [ -f "release.tar.gz" ] ; then rm "release.tar.gz"; fi

FILES=(
"bindings/bindings.zig"
"bindings/raylib.zig"
Expand All @@ -12,4 +14,4 @@ FILES=(
"LICENSE"
)

tar -czvf release.tar.gz ${FILES[@]}
tar -czf release.tar.gz ${FILES[@]}

0 comments on commit 8f88ff8

Please sign in to comment.