1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/res/copy-deps.sh
2013-09-19 18:35:12 +02:00

15 lines
264 B
Bash
Executable File

#!/bin/sh
echo "--> building dependencies to src\n"
# go to root
cd `dirname $0`
cd ..
# build imap/smtp modules and copy
cd ./node_modules/smtp-client/
node build.js && cp ./src-gen/*.js ../../src/lib/
cd ../../
echo "\n--> finished building dependencies.\n"