Skip to content

Commit

Permalink
fix: add Hermit bin dir (#3809)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas authored Dec 18, 2024
1 parent b9f8209 commit 9a4d27a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/cli/cmd_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ func (i initCmd) Run(
if err := maybeGitAdd(ctx, i.Dir, "README.md"); err != nil {
return fmt.Errorf("git add README.md: %w", err)
}
if i.Hermit {
if err := maybeGitAdd(ctx, i.Dir, "bin"); err != nil {
return fmt.Errorf("git add bin: %w", err)
}
}
}
return nil
}
Expand Down

0 comments on commit 9a4d27a

Please sign in to comment.