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.
pleroma-fe-sjw/build.sh

10 lines
246 B

#!/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"