This repository has been archived on 2022-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-50/automation/scripts/post_process_release_windows.sh

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