Skip to content

Commit

Permalink
fix: remove redefinition of variable
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas Bruyelle <thomas.bruyelle@gmail.com>
  • Loading branch information
jeronimoalbi and tbruyelle authored Oct 20, 2022
1 parent b5516e5 commit e1b8279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignite/services/chain/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (c *Chain) Generate(
dartPath = defaultDartPath
}

dartPath := filepath.Join(c.app.Path, dartPath, "generated")
dartPath = filepath.Join(c.app.Path, dartPath, "generated")
if err := os.MkdirAll(dartPath, 0o766); err != nil {
return err
}
Expand Down

0 comments on commit e1b8279

Please sign in to comment.