11 lines
533 B
Bash
Executable file
11 lines
533 B
Bash
Executable file
#!/usr/bin/env bash
|
|
TARGET="pleroma@froth.zone:/opt/pleroma-zero"
|
|
|
|
#rsync -ra public/ "${TARGET}/instance/static"
|
|
#cp dist/index.html "${TARGET}/instance/static/index.html"
|
|
rsync --update --delete -Pr dist/ "${TARGET}"
|
|
#rsync --update -ra dist/static/ "${TARGET}/instance/static/static"
|
|
#rsync --delete -ra images/ "${TARGET}/instance/static/images"
|
|
#rsync --delete -ra sounds/ "${TARGET}/instance/static/sounds"
|
|
#rsync -ra instance/ "${TARGET}/instance/static/instance"
|
|
#rsync --delete -ra pages/ "${TARGET}/instance/static/pages"
|