summaryrefslogtreecommitdiffstats
path: root/.devcontainer/build.sh
diff options
context:
space:
mode:
authorguillaume <guillaume.cassou@orange.fr>2019-08-30 17:18:29 +0200
committerguillaume <guillaume.cassou@orange.fr>2019-08-30 17:18:29 +0200
commit618340275476ac1008400c975122dd2851d0ac59 (patch)
tree679aaf0ae9433965a8b9ac43d20b21fd4d840d6d /.devcontainer/build.sh
parent663ba26d4dd0bba8330496a76035b1674031a299 (diff)
parentd1ab787215adb83064a5be4678e7073ba71fbb22 (diff)
downloadwekan-618340275476ac1008400c975122dd2851d0ac59.tar.gz
wekan-618340275476ac1008400c975122dd2851d0ac59.tar.bz2
wekan-618340275476ac1008400c975122dd2851d0ac59.zip
Merge branch 'master' of https://github.com/wekan/wekan
Diffstat (limited to '.devcontainer/build.sh')
-rw-r--r--.devcontainer/build.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/.devcontainer/build.sh b/.devcontainer/build.sh
new file mode 100644
index 00000000..e5343cab
--- /dev/null
+++ b/.devcontainer/build.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+cd /home/wekan/app
+rm -rf node_modules
+/home/wekan/.meteor/meteor npm install
+rm -rf .build
+/home/wekan/.meteor/meteor build .build --directory
+cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js
+cd .build/bundle/programs/server
+rm -rf node_modules
+/home/wekan/.meteor/meteor npm install
+cd /home/wekan/app