Skip to content

Commit

Permalink
fix(apps:init): re-enable language "go" shorthand on apps init
Browse files Browse the repository at this point in the history
  • Loading branch information
jayjayjpg committed Mar 16, 2022
1 parent 74ca6ce commit bef5dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/meroxa/root/apps/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (i *Init) Execute(ctx context.Context) error {

i.logger.Infof(ctx, "Initializing application %q in %q...", name, i.path)
switch lang {
case GoLang:
case "go", GoLang:
err := turbine.Init(name, i.path)
if err != nil {
return err
Expand Down

0 comments on commit bef5dde

Please sign in to comment.