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_linux.sh

11 lines
263 B
Bash

#! /bin/bash
# This script will bundle the game under Linux 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-linux-x64
chmod +x $PROD_TMP/ldjam50-linux-x64