LOTUS_PATH is the canonical way to get the repo path
This commit is contained in:
parent
7b6f109401
commit
70bf990294
@ -178,14 +178,13 @@ func FetchAndLoadBundles(ctx context.Context, bs blockstore.Blockstore, bar map[
|
||||
netw = v
|
||||
}
|
||||
|
||||
// TODO: how to get the repo properly?
|
||||
path, err := homedir.Expand("~/.lotus")
|
||||
path := os.Getenv("LOTUS_PATH")
|
||||
if path == "" {
|
||||
var err error
|
||||
path, err = homedir.Expand("~/.lotus")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if p := os.Getenv("LOTUS_PATH"); p != "" {
|
||||
path = p
|
||||
}
|
||||
|
||||
for av, rel := range bar {
|
||||
|
Loading…
Reference in New Issue
Block a user