Files
core/scripts/assets-push.sh
Innei 7a1ccdf9d9 fix: asset push script
Signed-off-by: Innei <tukon479@gmail.com>
2023-02-10 11:27:02 +08:00

10 lines
185 B
Bash

set -e
cd assets
git init
git add .
git commit -m 'update assets'
git remote add origin git@github.com:mx-space/assets.git
git branch -M master
git push -u origin master -f
rm -rf .git