3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-23 09:35:02 +00:00

Fix dist copy in update-dashboard.sh, return to original dir

This commit is contained in:
Dragory 2021-09-05 17:38:52 +03:00
parent 6f00484a75
commit 0f65fb1b7b

View file

@ -11,5 +11,8 @@ git pull
nvm use nvm use
npm ci npm ci
npm run build npm run build
rm -r "$TARGET_DIR/*" rm -r $TARGET_DIR/*
cp -R dist/* "$TARGET_DIR" cp -R dist/* $TARGET_DIR
# Return
cd ..