14 lines
230 B
Bash
Executable file
14 lines
230 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
## core
|
|
tools/ivaldi build
|
|
|
|
## data
|
|
mkdir -p build/data
|
|
cp -r -u -v data/* build/data/
|
|
|
|
## node modules
|
|
node_modules=""
|
|
node_modules="${node_modules} nodemailer"
|
|
cd build && npm install ${node_modules} ; cd -
|