mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-03-30 16:53:31 +08:00
13 lines
139 B
Bash
Executable File
13 lines
139 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
MODE=Release
|
|
if [ ! -z $1 ]; then
|
|
MODE=$1
|
|
fi
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
xcodebuild -configuration ${MODE} -target atom
|