mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
17 lines
360 B
Bash
Executable File
17 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# This entire file is a hack so that constructicon can build Atom via
|
|
# xcode
|
|
|
|
cd "$(dirname "$0")/.."
|
|
./script/bootstrap
|
|
./node_modules/.bin/grunt -v --build-dir="$BUILT_PRODUCTS_DIR bootstrap build"
|
|
|
|
echo <<OUTPUT_FOR_CONSTRUCTICON
|
|
TARGET_BUILD_DIR=$BUILT_PRODUCTS_DIR
|
|
FULL_PRODUCT_NAME=Atom.app
|
|
PRODUCT_NAME=Atom
|
|
OUTPUT_FOR_CONSTRUCTICON
|