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.
8 lines
346 B
8 lines
346 B
#!/bin/bash |
|
# Upload des Previews. Vorbedingung: in hugo.toml muss baseURL = "https://tempelgold.kollegen.uber.space/preview" |
|
USER=kollegen |
|
HOST=despina.uberspace.de |
|
# the directory where your web site files should go |
|
DIR=/home/kollegen/tempelgold.kollegen.uber.space/preview |
|
hugo && rsync -avz public/ ${USER}@${HOST}:${DIR} |
|
exit 0
|
|
|