Merge pull request #17 from pyllyukko/rsync_nogroup

Add --no-group to rsync

Fixed #17
This commit is contained in:
Willy Sudiarto Raharjo 2016-02-12 00:08:26 +07:00
commit 1d234d5b0b

View File

@ -2364,7 +2364,7 @@ rsync_command() {
local SYNC_LOCK=$SBOPKGTMP/sbopkg_sync.lck
rsync --archive --delete --no-owner --exclude="*.sbopkg" \
rsync --archive --delete --no-owner --no-group --exclude="*.sbopkg" \
$RSYNCFLAGS $REPO_LINK/ $REPO_DIR/
case $? in
35)