mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-04 20:05:57 +00:00
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
# https://github.com/Kentzo/git-archive-all
|
|
# build archives
|
|
export VERSION=`git tag | tail -1`
|
|
export OUTDIR=dist
|
|
echo Creating $OUTDIR
|
|
git-archive-all --prefix . release/$OUTDIR.zip
|
|
zip -9r release/$OUTDIR.zip gen
|
|
mkdir $OUTDIR
|
|
cd $OUTDIR
|
|
unzip ../release/$OUTDIR.zip
|
|
|