This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-48/bundle/linux/create-release.sh
2021-04-25 16:17:09 -04:00

22 lines
592 B
Bash
Executable File

#! /bin/bash
set -e
echo "Building for x64 Linux"
docker build -t ldjam_48_x86_64_unknown_linux_gnu_build_env ./bundle/linux
cross build --target x86_64-unknown-linux-gnu --release
echo "Creating bundle output"
rm -rf ./bundle/linux/release
rm -rf ./bundle/linux/release-x86_64-unknown-linux-gnu.zip
mkdir -p ./bundle/linux/release
echo "Copying binary"
cp ./target/x86_64-unknown-linux-gnu/release/ldgame ./bundle/linux/release
echo "Copying assets"
cp -r ./assets ./bundle/linux/release
echo "Packing assets"
cd ./bundle/linux/release
zip -r ../release-x86_64-unknown-linux-gnu.zip ./