Skip to content

Instantly share code, notes, and snippets.

View hiroshihorie's full-sized avatar
🤯
The best things happen unexpectedly.

Hiroshi Horie hiroshihorie

🤯
The best things happen unexpectedly.
View GitHub Profile
#!/bin/sh
if [ ! -n "$1" ]; then
echo "Usage: $0 'debug' | 'release'"
exit 0
fi
MODE=$1
OUT_DIR=./out-$MODE
DEBUG="false"
if [ "$MODE" == "debug" ]; then