11 lines
216 B
Bash
Executable file
11 lines
216 B
Bash
Executable file
# !/usr/bin/env bash
|
|
|
|
#mfgames-project:setup@v0.0.0
|
|
log() { echo "🚧 $(basename $0): $@"; }
|
|
cd $(dirname $(dirname $0))
|
|
#mfgames-project:setup
|
|
|
|
./scripts/setup.sh || exit 1
|
|
|
|
log "running Yarn build"
|
|
yarn run build
|