Skip to content

Commit 39e65c4

Browse files
committed
Fix rsync excludes to avoid sync of untracked files
Signed-off-by: Sorin Sbarnea <[email protected]>
1 parent de10ab7 commit 39e65c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

rtox/rtox.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,9 @@ def __init__(self,
6767
# Load excludes from .gitignore
6868
# See https://stackoverflow.com/a/15373763/99834
6969
self.rsync_params += \
70-
"--include .git --exclude=`git ls-files " \
71-
"--exclude-standard -oi --directory` "
70+
'--include .git --exclude-from="$(git ls-files ' \
71+
'--exclude-standard -oi --directory >.git/ignores.tmp && ' \
72+
'echo .git/ignores.tmp)" '
7273
else:
7374
for exclude in ['.tox', '.pytest_cache', '*.pyc', '__pycache__']:
7475
self.rsync_params += '--exclude %s ' % exclude

0 commit comments

Comments
 (0)