@cryptotaxi247 / kubo / commits / 62c64c156

Add instructions to resolve repo migration error (#8946)

Fixes #8779 Co-authored-by: Daniel N <2color@users.noreply.github.com> (cherry picked from commit d476f2d6dab6dc4c89541d49f4a417576be3c0f6)

Daniel Norman committed May 6, 2022 at 14:02 UTC 62c64c1566d14c946c3702047b5118082be71ffb
1 file changed +1 -1
repo/fsrepo/fsrepo.go
+1 -1
@@ -50,7 +50,7 @@ See https://github.com/ipfs/fs-repo-migrations/blob/master/run.md for details.`
50 var (
51 ErrNoVersion = errors.New("no version file found, please run 0-to-1 migration tool.\n" + migrationInstructions)
52 ErrOldRepo = errors.New("ipfs repo found in old '~/.go-ipfs' location, please run migration tool.\n" + migrationInstructions)
53 - ErrNeedMigration = errors.New("ipfs repo needs migration")
53 + ErrNeedMigration = errors.New("ipfs repo needs migration, please run migration tool.\n" + migrationInstructions)
54 )
55
56 type NoRepoError struct {