go-opengl-pixel/examples/community/ASharedJourney/build_linux.sh

14 lines
265 B
Bash
Executable File

#!/bin/bash
DESTINATION="/tmp/ASharedJourney"
make build_assets
go build main.go
chmod +x main
mkdir -p $DESTINATION
cp main $DESTINATION/ASharedJourney
cp -r ./assets $DESTINATION/
echo "Built!"
echo "You may now send" $DESTINATION "to your beautiful friends!"