Skip to content

Commit

Permalink
simplify build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Kromm committed Dec 24, 2019
1 parent 239e2c4 commit ca72727
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,8 @@

set -e

name=10.5x
version=$(git describe --abbrev=0 --tags)
filename=$name-$version.pk3
filename=10.5x-$(git describe --abbrev=0 --tags).pk3

rm -f $filename

zip $filename \
zscript/*.zs \
*.md \
*.txt \
*.zs

gzdoom -file $filename "$@"
zip -R $filename "*.md" "*.txt" "*.zs"
gzdoom $filename "$@"

0 comments on commit ca72727

Please sign in to comment.