mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
took the HTML dir out of xcode. Everything in HTML will be copied to the bundle on build. Directory structure REMAINS INTACT!
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
|
||||
PATH="$PATH:/usr/local/bin/"
|
||||
hash coffee 2>&- || { echo >&2 "error: Coffee is required but it's not installed (http://jashkenas.github.com/coffee-script/)."; exit 1; }
|
||||
coffee -o "$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Resources/" HTML/*.coffee
|
||||
coffee -o "$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Resources/HTML" HTML/*.coffee
|
||||
|
||||
7
script/copy-html.sh
Executable file
7
script/copy-html.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
SOURCE_SCRIPTS_DIR="$PROJECT_DIR/HTML"
|
||||
DESTINATION_SCRIPTS_DIR="$BUILT_PRODUCTS_DIR/$CONTENTS_FOLDER_PATH/Resources/"
|
||||
|
||||
cp -r "$SOURCE_SCRIPTS_DIR" "$DESTINATION_SCRIPTS_DIR"
|
||||
echo "$DESTINATION_SCRIPTS_DIR"
|
||||
Reference in New Issue
Block a user