Skip to content

Commit

Permalink
fix project creation
Browse files Browse the repository at this point in the history
  • Loading branch information
cpunion committed Nov 22, 2024
1 parent 9ae79ab commit af6a765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/internal/install/deps.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func installGoDeps(projectPath string) error {
}()

fmt.Println("Installing Go dependencies...")
getCmd := exec.Command("go", "get", "-u", "github.com/gotray/go-python")
getCmd := exec.Command("go", "get", "-u", "github.com/gotray/got")

Check warning on line 57 in cmd/internal/install/deps.go

View check run for this annotation

Codecov / codecov/patch

cmd/internal/install/deps.go#L57

Added line #L57 was not covered by tests
getCmd.Stdout = os.Stdout
getCmd.Stderr = os.Stderr
if err := getCmd.Run(); err != nil {
Expand Down

0 comments on commit af6a765

Please sign in to comment.