summaryrefslogtreecommitdiffstats
path: root/.devcontainer/build.sh
blob: e5343cab52f87f679028ddb32aaecb872d70c32b (plain)
1
2
3
4
5
6
7
8
9
10
11
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