mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
18 lines
421 B
Bash
Executable File
18 lines
421 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
# This entire file is a hack so that constructicon can build Atom via
|
|
# xcode
|
|
|
|
cd "$(dirname "$0")/../.."
|
|
rm -fr node_modules
|
|
rm -fr vendor/apm/node_modules
|
|
rm -fr build/node_modules
|
|
./script/bootstrap --no-color
|
|
./build/node_modules/.bin/grunt --no-color --build-dir="$BUILT_PRODUCTS_DIR" deploy
|
|
|
|
echo "TARGET_BUILD_DIR=$BUILT_PRODUCTS_DIR"
|
|
echo "FULL_PRODUCT_NAME=Atom.app"
|
|
echo "PRODUCT_NAME=Atom"
|