2023-03-19 03:41:53 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
yarn install
|
|
|
|
|
|
|
|
yarn run build
|
|
|
|
|
|
|
|
while true; do
|
2023-03-22 11:35:22 +01:00
|
|
|
read -p "Do you want to copy dist to ../../public/static? (type n for no): " answer
|
|
|
|
if [ $answer = 'n' ] || [ $answer = 'N' ]; then exit 0; fi
|
|
|
|
cp dist ../../public/static
|
2023-03-19 03:41:53 +01:00
|
|
|
done
|