inline-gen: Fix lint

This commit is contained in:
Łukasz Magiera 2021-10-18 17:50:31 +02:00
parent 463f55ba13
commit 3943c3ae6f
2 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,7 @@
- [ ] Define upgrade heights in `build/params_`
- [ ] Generate adapters
- [ ] Update `gen/inlinegen-data.json`
- [ ] Update adapter code in `chain/actors/version.go` if needed
- [ ] Update `chain/actors/version.go`
- [ ] Update adapter code in `chain/actors/builtin` if needed
- [ ] Run `make actors-gen`
- [ ] Update `chain/consensus/filcns/upgrades.go`

View File

@ -29,6 +29,9 @@ func main() {
}
err = filepath.WalkDir(os.Args[1], func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
if d.IsDir() {
return nil
}