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/create-releases.sh
2021-04-24 13:28:19 -04:00

18 lines
480 B
Bash
Executable File

#! /bin/bash
set -e
# Build all platforms
./bundle/linux/create-release.sh
./bundle/windows/create-release.sh
# Make a uni-bundle
echo "Creating a fat bundle for all platforms"
rm -rf ./bundle/release
rm -rf ./bundle/one-breath.zip
mkdir -p ./bundle/release
cp -r ./assets ./bundle/release
cp ./bundle/linux/release/one-breath ./bundle/release/one-breath
cp ./bundle/windows/release/one-breath.exe ./bundle/release/one-breath.exe
cd ./bundle/release
zip -r ../one-breath.zip ./