@@ -189,7 +189,7 @@ func pinAddMany(ctx context.Context, api coreiface.CoreAPI, enc cidenc.Encoder,
189
189
return nil , err
190
190
}
191
191
192
- rp , err := api .ResolvePath (ctx , p )
192
+ rp , _ , err := api .ResolvePath (ctx , p )
193
193
if err != nil {
194
194
return nil , err
195
195
}
@@ -252,7 +252,7 @@ ipfs pin ls -t indirect <cid>
252
252
return err
253
253
}
254
254
255
- rp , err := api .ResolvePath (req .Context , p )
255
+ rp , _ , err := api .ResolvePath (req .Context , p )
256
256
if err != nil {
257
257
return err
258
258
}
@@ -468,7 +468,7 @@ func pinLsKeys(req *cmds.Request, typeStr string, api coreiface.CoreAPI, emit fu
468
468
return err
469
469
}
470
470
471
- rp , err := api .ResolvePath (req .Context , p )
471
+ rp , _ , err := api .ResolvePath (req .Context , p )
472
472
if err != nil {
473
473
return err
474
474
}
@@ -594,11 +594,11 @@ pin.
594
594
}
595
595
596
596
// Resolve the paths ahead of time so we can return the actual CIDs
597
- from , err := api .ResolvePath (req .Context , fromPath )
597
+ from , _ , err := api .ResolvePath (req .Context , fromPath )
598
598
if err != nil {
599
599
return err
600
600
}
601
- to , err := api .ResolvePath (req .Context , toPath )
601
+ to , _ , err := api .ResolvePath (req .Context , toPath )
602
602
if err != nil {
603
603
return err
604
604
}
0 commit comments