fix: macos notarized fs-repo-migrations (#8333)
Uses: https://github.com/ipfs/distributions/pull/381 Closes #8240
Marcin Rataj committed
Aug 12, 2021 at 18:52 UTC
6e610066f6a9f1212410fbab88b625444e031fe5
2 files changed
+5
-4
docs/environment-variables.md
+4
-3
@@ -77,10 +77,11 @@ Defaults: 2048
77
78
## `IPFS_DIST_PATH`
79
80
-URL from which go-ipfs fetches repo migrations (when the daemon is launched with
81
-the `--migrate` flag).
80
+IPFS Content Path from which go-ipfs fetches repo migrations (when the daemon
81
+is launched with the `--migrate` flag).
82
83
-Default: https://ipfs.io/ipfs/$something (depends on the IPFS version)
83
+Default: `/ipfs/<cid>` (the exact path is hardcoded in
84
+`migrations.CurrentIpfsDist`, depends on the IPFS version)
85
86
## `IPFS_NS_MAP`
87
repo/fsrepo/migrations/fetcher.go
+1
-1
@@ -10,7 +10,7 @@ import (
10
11
const (
12
// Current dirstibution to fetch migrations from
13
- CurrentIpfsDist = "/ipfs/QmVxxcTSuryJYdQJGcS8SyhzN7NBNLTqVPAxpu6gp2ZcrR"
13
+ CurrentIpfsDist = "/ipfs/QmP7tLxzhLU1KauTRX3jkVkF93pCv4skcceyUYMhf4AKJR" // fs-repo-migrations v2.0.2
14
// Latest distribution path. Default for fetchers.
15
LatestIpfsDist = "/ipns/dist.ipfs.io"
16