mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
11 lines
362 B
Bash
Executable File
11 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
rm -rf ../boot/src/main/resources/static/assets/*
|
|
|
|
mkdir -p ../boot/src/main/resources/static/assets/
|
|
cp dist/vite.svg ../boot/src/main/resources/static/
|
|
cp -R dist/assets/* ../boot/src/main/resources/static/assets/
|
|
|
|
mkdir -p ../boot/src/main/resources/templates
|
|
cp dist/index.html ../boot/src/main/resources/templates/index.html
|
|
|
|
echo "copy success" |