Skip to content

Commit

Permalink
inline-gen: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k committed Oct 18, 2021
1 parent 463f55b commit 3943c3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/misc/actors_version_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
3 changes: 3 additions & 0 deletions gen/inline-gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 3943c3a

Please sign in to comment.