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