Skip to content

Commit

Permalink
Added release builder and ignored release zips
Browse files Browse the repository at this point in the history
  • Loading branch information
vrooze committed Sep 29, 2022
1 parent 65aa473 commit 2fdcdbf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
.idea
.idea
# Ignore release files
*.zip
10 changes: 10 additions & 0 deletions build-release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash
RELEASE_NAME="ProfessionsProfessor"

echo "Building Release zip..."
rm -f ${RELEASE_NAME}.zip
zip -r ${RELEASE_NAME}.zip Libs *.toc *.lua
echo Done!

# Open in gui for uploading
nemo .

0 comments on commit 2fdcdbf

Please sign in to comment.