diff --git a/deploy_to_hetzner.sh b/deploy_to_hetzner.sh index b1deedc..745f497 100755 --- a/deploy_to_hetzner.sh +++ b/deploy_to_hetzner.sh @@ -16,13 +16,23 @@ put -r $LOCAL_DIR/impressum.html put -r $LOCAL_DIR/robots.txt put -r $LOCAL_DIR/sitemap.xml put -r $LOCAL_DIR/.htaccess + +# Hauptbilder der Landingpage mkdir img cd img put -r $LOCAL_DIR/img/* cd .. -# Ensure manual folder exists and upload manual page + +# Manual (HTML + Bilder) mkdir manual -put -r $LOCAL_DIR/manual/index.html manual/index.html +cd manual +put -r $LOCAL_DIR/manual/index.html +put -r $LOCAL_DIR/manual/beacon-front.jpg +mkdir img +cd img +put -r $LOCAL_DIR/manual/img/* +cd .. +cd .. bye EOF