mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-25 18:25:03 +00:00
10 lines
91 B
Bash
Executable file
10 lines
91 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Update dashboard
|
|
cd dashboard
|
|
git pull
|
|
npm ci
|
|
npm run build
|
|
|
|
# Return
|
|
cd ..
|