pleroma-fe/build.sh

10 lines
246 B
Bash
Raw Normal View History

2019-09-08 00:45:34 +02:00
#!/bin/sh
TARGET="/opt/pleroma" # Where pleromas repository is sitting
yarn install -D
rm -rf dist/*
npm run build
cp dist/index.html "${TARGET}/instance/static/index.html"
rsync --delete -ra dist/static/ "${TARGET}/instance/static/static"