diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-11 14:53:13 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-06-11 14:53:13 +0200 |
commit | 9ae6155eb43ca7f6bd6b7d49d3e85544367e5622 (patch) | |
tree | 70cbd34c2a8d569192dbed4dd06e15220caff89e /stage | |
parent | 606d2522c091c087a539827f65523127e8c6d63a (diff) |
Fix rsync permission issue
Diffstat (limited to 'stage')
-rwxr-xr-x | stage | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -210,7 +210,7 @@ function sync_dist () # <dist-src> <dist-dst> [<rsync-options>] info "Press Enter to start distribution upload to $d" read - rsync -v -rlpt -c --copy-unsafe-links --prune-empty-dirs \ + rsync -v -rltO -c --chmod=ugo=rwX --copy-unsafe-links --prune-empty-dirs \ $rsync_ops "$@" "$s/" "$d/" } |