mirror of
https://github.com/moparisthebest/mail
synced 2024-11-12 04:05:13 -05:00
15 lines
228 B
Bash
Executable File
15 lines
228 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
|
|
cd ../../
|
|
|
|
echo "\n--> finished building dependencies.\n"
|