summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-08 16:46:45 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-08 16:46:45 -0400
commit12cd7c03d6676466f7b10b8e80b4e05edab0cf2a (patch)
tree1ac8ce24314f09ba7dfd7b21ec2d5d3ecaf06ec2 /Makefile
parent66cc4fa08fccf6e6d95a4b936d00d66733b5d075 (diff)
downloadchat-12cd7c03d6676466f7b10b8e80b4e05edab0cf2a.tar.gz
chat-12cd7c03d6676466f7b10b8e80b4e05edab0cf2a.tar.bz2
chat-12cd7c03d6676466f7b10b8e80b4e05edab0cf2a.zip
Fixing broken travis release build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 13 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b03ed5cba..12b209c84 100644
--- a/Makefile
+++ b/Makefile
@@ -88,6 +88,11 @@ travis:
mkdir -p $(DIST_PATH)/web/static/js
cp -L web/static/js/*.min.js $(DIST_PATH)/web/static/js/
+ cp -RL web/static/config $(DIST_PATH)/web/static
+ cp -RL web/static/css $(DIST_PATH)/web/static
+ cp -RL web/static/fonts $(DIST_PATH)/web/static
+ cp -RL web/static/help $(DIST_PATH)/web/static
+ cp -RL web/static/images $(DIST_PATH)/web/static
cp -RL web/static/js/jquery-dragster $(DIST_PATH)/web/static/js/
cp -RL web/templates $(DIST_PATH)/web
@@ -265,8 +270,14 @@ dist: install
cd web/sass-files && compass compile -e production --force
- mkdir -p $(DIST_PATH)/web
- cp -RL web/static $(DIST_PATH)/web
+ mkdir -p $(DIST_PATH)/web/static/js
+ cp -L web/static/js/*.min.js $(DIST_PATH)/web/static/js/
+ cp -RL web/static/config $(DIST_PATH)/web/static
+ cp -RL web/static/css $(DIST_PATH)/web/static
+ cp -RL web/static/fonts $(DIST_PATH)/web/static
+ cp -RL web/static/help $(DIST_PATH)/web/static
+ cp -RL web/static/images $(DIST_PATH)/web/static
+ cp -RL web/static/js/jquery-dragster $(DIST_PATH)/web/static/js/
cp -RL web/templates $(DIST_PATH)/web
mkdir -p $(DIST_PATH)/api