mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-11-28 07:20:23 +08:00
11 lines
No EOL
234 B
Bash
11 lines
No EOL
234 B
Bash
#!/bin/bash
|
|
|
|
BASE_PATH=$(pwd)
|
|
|
|
cd "${BASE_PATH}/daemon" && npm install --production --no-fund --no-audit
|
|
|
|
cd "${BASE_PATH}/web" && npm install --production --no-fund --no-audit
|
|
|
|
echo "------------"
|
|
echo "All done!"
|
|
echo "------------" |