build.sh 352 B

123456789101112
  1. #!/bin/bash
  2. cd /app
  3. rm -rf node_modules
  4. /home/wekan/.meteor/meteor npm install
  5. rm -rf .build
  6. /home/wekan/.meteor/meteor build .build --directory
  7. cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js
  8. cd .build/bundle/programs/server
  9. rm -rf node_modules
  10. /home/wekan/.meteor/meteor npm install
  11. cd /app