2013-05-16 16:54:56 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-09-17 14:40:35 +02:00
|
|
|
echo "--> building dependencies to src\n"
|
2013-05-16 16:54:56 +02:00
|
|
|
|
|
|
|
# go to root
|
|
|
|
cd `dirname $0`
|
|
|
|
cd ..
|
|
|
|
|
2013-08-16 20:31:18 +02:00
|
|
|
# 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/
|
2013-08-16 20:31:18 +02:00
|
|
|
cd ../../
|
|
|
|
|
|
|
|
cd ./node_modules/smtp-client/
|
2013-08-17 17:32:49 +02:00
|
|
|
node build.js && cp ./src-gen/*.js ../../src/lib/
|
2013-08-16 20:31:18 +02:00
|
|
|
cd ../../
|
|
|
|
|
2013-09-17 14:40:35 +02:00
|
|
|
echo "\n--> finished building dependencies.\n"
|