1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/res/copy-deps.sh

24 lines
523 B
Bash
Raw Normal View History

2013-05-16 10:54:56 -04:00
#!/bin/sh
echo "--> copying dependencies to src\n"
# go to root
cd `dirname $0`
cd ..
# copy crypto lib
2013-06-10 11:57:33 -04:00
cp ./node_modules/crypto-lib/src/*.js ./src/js/crypto/
cp ./node_modules/crypto-lib/node_modules/node-forge/js/*.js ./src/lib/
# build imap/smtp modules and copy
cd ./node_modules/imap-client/
npm install && node build.js
cp ./src-gen/*.js ../../src/lib/
cd ../../
cd ./node_modules/smtp-client/
npm install && node build.js
cp ./src-gen/*.js ../../src/lib/
cd ../../
echo "\n--> finished copying dependencies.\n"