1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-30 01:23:04 +03:00
guide/scripts/buildjs.sh

9 lines
114 B
Bash
Raw Normal View History

#!/bin/bash -xe
cd guidejs
echo "PWD is $PWD"
npm run build
rm -rf ../static/js
cp -r ./dist/ ../static/js
cd ..