mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
13 lines
209 B
Bash
Executable File
13 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
target="test"
|
|
if [ "$#" -ge 1 ]; then
|
|
target="$1"
|
|
shift
|
|
fi
|
|
|
|
# Set up env variable to show % of completion during ninja build
|
|
export NINJA_STATUS="[%p %f/%t] "
|
|
|
|
ninja -C build "$target" "$@"
|