mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 13:51:51 +00:00
11 lines
117 B
Bash
Executable file
11 lines
117 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Load nvm
|
|
. ~/.nvm/nvm.sh
|
|
|
|
# Run update
|
|
nvm use
|
|
git pull
|
|
npm ci
|
|
npm run build
|
|
pm2 restart process.json
|