about summary refs log tree commit diff stats
path: root/pre.sh
blob: 28e6f2b0a98675dadcaf104fe2a6892e703a7f0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e

# Execute commands before building.                                            #
# Below is an example.                                                         #

sudo apt update
sudo apt upgrade
wget https://example.com/game_assets.zip
unzip game_assets.zip

exit 0