Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 552814 | Differences between
and this patch

Collapse All | Expand All

(-)a/pym/portage/sync/modules/git/git.py (-5 / +1 lines)
Lines 118-127 class GitSync(NewBase): Link Here
118
		if exitcode == os.EX_OK and self.repo.sync_depth is not None:
118
		if exitcode == os.EX_OK and self.repo.sync_depth is not None:
119
			# update-index --refresh is needed on some filesystems
119
			# update-index --refresh is needed on some filesystems
120
			# (e.g. with overlayfs on squashfs)
120
			# (e.g. with overlayfs on squashfs)
121
			update_index_cmd = [self.bin_command, 'update-index']
121
			update_index_cmd = [self.bin_command, 'update-index', '-q', '--refresh']
122
			if quiet: # -q needs to go first
123
				update_index_cmd.append('-q')
124
			update_index_cmd.append('--refresh')
125
122
126
			exitcode = subprocess.call(update_index_cmd,
123
			exitcode = subprocess.call(update_index_cmd,
127
				cwd=portage._unicode_encode(self.repo.location))
124
				cwd=portage._unicode_encode(self.repo.location))
128
- 

Return to bug 552814