diff options
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index 9af12322..8050e515 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -102,8 +102,9 @@ the manifest. | |||
102 | self._Fetch(*missing) | 102 | self._Fetch(*missing) |
103 | 103 | ||
104 | for project in all: | 104 | for project in all: |
105 | if not project.Sync_LocalHalf(): | 105 | if project.worktree: |
106 | sys.exit(1) | 106 | if not project.Sync_LocalHalf(): |
107 | sys.exit(1) | ||
107 | 108 | ||
108 | 109 | ||
109 | def _VerifyTag(project): | 110 | def _VerifyTag(project): |