You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
314 B

#!/bin/sh
if [ -f "build/cluarData.js" ]; then
mv build/cluarData.js .cluarData.js
fi
cp src/config-prod.json src/config.json
rsync -av build/images/ public/images/
yarn install
yarn build
cp src/config-dev.json src/config.json
if [ -f ".cluarData.js" ]; then
mv .cluarData.js build/cluarData.js
fi