3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +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 cc4477a7ee
commit 7058d81631
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

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