11 lines
269 B
Bash
11 lines
269 B
Bash
#! /bin/bash
|
|
# This script will bundle the game under Windows for publication
|
|
set -ex
|
|
|
|
export PROD_TMP=./target/production_tmp
|
|
|
|
rm -rf $PROD_TMP
|
|
mkdir -p $PROD_TMP
|
|
|
|
mv ./target/release/desktop_wrapper $PROD_TMP/ldjam50-windows-x64
|
|
chmod +x $PROD_TMP/ldjam50-windows-x64 |