From 91df53fc7f25c2c5a87f3a0f572d8c0ac7bfa70b Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Tue, 21 Apr 2020 17:58:47 +0200 Subject: [PATCH] change deploy target to alto --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 9b7ed24..127bf61 100644 --- a/justfile +++ b/justfile @@ -11,9 +11,9 @@ graph: # Deploy up-to-date website to webserver deploy: build - rsync --checksum --copy-links -ave 'ssh -p 4242' \ + rsync --checksum --copy-links -ave 'ssh' \ --exclude-from=rsync_excludes.txt \ - build/* fab@ffreling.com:public_html/ffreling.com/public/ + build/* fabs@ffreling.com:ffreling.com/ preview: build python -m webbrowser -t "file://{{root}}/build/index.html"