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.
7 lines
461 B
7 lines
461 B
#!/bin/bash |
|
# Copies the local generated Hugo content from public/ subdirectory to uberspace. |
|
# Use this script only for an editor's test befor pushing the git repository to uberspace. |
|
# The content will renewed with every git push to kollegen-posts or kollegen-hugo by executing the git-hook 'post-push'. |
|
echo Publish to Uberspace... |
|
|
|
rsync -avv --delete /home/chris/hugo/kollegenrunde/public/ kollegen@despina.uberspace.de:kollegenrunde.kollegen.uber.space
|
|
|