mirror of
https://github.com/atom/atom.git
synced 2026-01-15 01:48:15 -05:00
16 lines
322 B
Bash
Executable File
16 lines
322 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")/.."
|
|
./node_modules/.bin/grunt --build-dir="$BUILT_PRODUCTS_DIR"
|
|
|
|
echo <<OUTPUT_FOR_CONSTRUCTICON
|
|
TARGET_BUILD_DIR=$BUILT_PRODUCTS_DIR
|
|
FULL_PRODUCT_NAME=Atom.app
|
|
PRODUCT_NAME=Atom
|
|
OUTPUT_FOR_CONSTRUCTICON
|