git-fsck-all: run fsck with --no-dangling

master
neingeist 7 years ago
parent 51584914e5
commit 9dd752c9e5

@ -32,7 +32,7 @@ def working_directory(directory):
for git_directory in git_directories('.'): for git_directory in git_directories('.'):
with working_directory(git_directory): with working_directory(git_directory):
print('\n{}:'.format(os.getcwd())) print('\n{}:'.format(os.getcwd()))
ret = subprocess.call(['git', 'fsck']) ret = subprocess.call(['git', 'fsck', '--no-dangling'])
if ret != 0: if ret != 0:
print((Fore.RED + 'git fsck is unhappy with {}' + Fore.RESET) print((Fore.RED + 'git fsck is unhappy with {}' + Fore.RESET)
.format(git_directory)) .format(git_directory))

Loading…
Cancel
Save