From a5f620a1d9daa05aadf570a55d5614995236e7f4 Mon Sep 17 00:00:00 2001 From: "https://christian.amsuess.com/chrysn" Date: Sun, 15 Aug 2021 11:04:37 +0000 Subject: [PATCH] migrate script: Fix accidentally commented-out fsck run --- doc/forum/Migrate_mark_files_dead.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/forum/Migrate_mark_files_dead.mdwn b/doc/forum/Migrate_mark_files_dead.mdwn index 62ffdada04..6bae482713 100644 --- a/doc/forum/Migrate_mark_files_dead.mdwn +++ b/doc/forum/Migrate_mark_files_dead.mdwn @@ -201,8 +201,8 @@ if bad_files: sys.exit(1) print("Checked %d symlinks in HEAD, none of them points to an old hash any more" % files_checked) -# subprocess.check_call('git annex fsck --fast --quiet', shell=True) -# print("Checked that the files that *are* in the tree are properly distributed.") +subprocess.check_call('git annex fsck --fast --quiet', shell=True) +print("Checked that the files that *are* in the tree are properly distributed.") print() print("If you want to really drop all of them, enter `force drop and declare them dead` here:") -- 2.30.2