fix path level
This commit is contained in:
parent
ca14f60779
commit
8b734f10ed
|
@ -5,11 +5,11 @@ yarn install
|
|||
yarn run build
|
||||
|
||||
while true; do
|
||||
read -p "Do you want to copy dist to ../../../public/static/dist? (Y/n): " yn
|
||||
read -p "Do you want to copy dist to ../../public/static/dist? (Y/n): " yn
|
||||
case $yn in
|
||||
[Yy]* cp dist ../../../public/static/dist; break;;
|
||||
[Yy]* cp dist ../../public/static/dist; break;;
|
||||
[Nn]* break;;
|
||||
[]* ) cp dist ../../../public/static/dist; break;;
|
||||
[]* ) cp dist ../../public/static/dist; break;;
|
||||
* ) echo "(Y/n)";;
|
||||
esac
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue