diff options
author | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-10 03:00:58 -0600 |
---|---|---|
committer | Lizzy Hunt <elizabeth.hunt@simponic.xyz> | 2024-03-10 03:00:58 -0600 |
commit | d4ae163fdaf3478687f1b75e18dd053da08d92de (patch) | |
tree | 45fe8a5acc5be7371a5859374fb1f5e597be5943 | |
parent | b842444aaf7b8623dc478318a86e6e62027117a8 (diff) | |
download | tilde.club-d4ae163fdaf3478687f1b75e18dd053da08d92de.tar.gz tilde.club-d4ae163fdaf3478687f1b75e18dd053da08d92de.zip |
fix substitution
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ done cd .. echo "finished copying to remote host..." -ssh -i /tmp/key -o StrictHostKeyChecking=no $(echo "${RSYNC_DESTINATION%%:*}") "systemctl daemon-reload --user && systemctl restart --user fruitvote" +ssh -i /tmp/key -o StrictHostKeyChecking=no $(echo "${RSYNC_DESTINATION%%:*}") "systemctl daemon-reload --user ; systemctl stop --user fruitvote ; systemctl start --user fruitvote" echo "reloading fruitvote..." rm /tmp/key |