summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-09 12:37:42 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-09 12:37:42 -0400
commit411606a75a5e816ab43e6f5daf34f85951bd6622 (patch)
treed94b16a7b076bfbdc2da8f6cadaa6a6d6c6870b2 /Makefile
parent73371fe33033f32c89bf7dd49170afc4afb1540c (diff)
parenta0febe2f3156ceb02635d9ecd5124da49c494161 (diff)
downloadchat-411606a75a5e816ab43e6f5daf34f85951bd6622.tar.gz
chat-411606a75a5e816ab43e6f5daf34f85951bd6622.tar.bz2
chat-411606a75a5e816ab43e6f5daf34f85951bd6622.zip
Merge branch 'master' into golang-version
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