Skip to content

Commit

Permalink
makefile bugfix, closes #411
Browse files Browse the repository at this point in the history
The Makefile was only copying over coffeescript and in the
process dropping any other files on build. This commit
fixes that.
  • Loading branch information
Jeff Escalante committed Mar 7, 2014
1 parent 8d1097e commit 7e858e0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
@@ -1,6 +1,7 @@
build:
mv lib src
coffee -o lib -c src
cp -R lib src
coffee -c lib
find lib -iname "*.coffee" -exec rm '{}' ';'

unbuild:
rm -rf lib
Expand Down

0 comments on commit 7e858e0

Please sign in to comment.