mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
6 lines
258 B
Bash
Executable File
6 lines
258 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|