1
0
mirror of https://github.com/moparisthebest/mail synced 2025-02-21 05:11:50 -05:00
mail/res/copy-deps.sh

19 lines
356 B
Bash
Raw Normal View History

2013-05-16 16:54:56 +02:00
#!/bin/sh
echo "--> building dependencies to src\n"
2013-05-16 16:54:56 +02:00
# go to root
cd `dirname $0`
cd ..
# build imap/smtp modules and copy
cd ./node_modules/imap-client/
2013-08-17 17:32:49 +02:00
node build.js && cp ./src-gen/*.js ../../src/lib/
cd ../../
cd ./node_modules/smtp-client/
2013-08-17 17:32:49 +02:00
node build.js && cp ./src-gen/*.js ../../src/lib/
cd ../../
echo "\n--> finished building dependencies.\n"