abstreet/build_release.sh
2019-03-18 15:37:02 -07:00

21 lines
360 B
Bash
Executable File

#!/bin/bash
set -e
OUT=abst_release
rm -rfv $OUT
mkdir $OUT
cp color_scheme README.md $OUT
mkdir $OUT/editor
#cp target/debug/editor $OUT/editor
#cp target/x86_64-pc-windows-gnu/debug/editor.exe $OUT/editor
cp target/x86_64-pc-windows-gnu/release/editor.exe $OUT/editor
mkdir -p $OUT/data/maps
cp data/maps/montlake.abst $OUT/data/maps
zip -r $OUT $OUT