mirror of
https://github.com/aelve/guide.git
synced 2024-11-30 01:23:04 +03:00
9 lines
114 B
Bash
9 lines
114 B
Bash
|
#!/bin/bash -xe
|
||
|
|
||
|
cd guidejs
|
||
|
echo "PWD is $PWD"
|
||
|
npm run build
|
||
|
rm -rf ../static/js
|
||
|
cp -r ./dist/ ../static/js
|
||
|
cd ..
|