diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2019-07-05 22:42:03 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2019-07-05 22:42:03 -0400 |
| commit | 9b792f976d32399a65bf55c1799cca5a521dfb69 (patch) | |
| tree | 2d3cf2655482299e2b8ece2a716c3aa8d1cd2c21 | |
| parent | 5f1ba9177af143861c4025c43e9d723c597db9c7 (diff) | |
switch to rsync for deployment
| -rwxr-xr-x | deploy_static | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/deploy_static b/deploy_static index 4cadea95..7ffdedfa 100755 --- a/deploy_static +++ b/deploy_static @@ -11,7 +11,6 @@ else target=html_a fi -ssh $remote rm -rf $target -scp -r static $remote:$target +rsync -rcve ssh --delete static/ $remote:$target ssh $remote chmod -R a+rX $target ssh $remote ln -snf $target html |
