Skip to content

Commit 59a29ae

Browse files
authored
Fix template create when ssh key is not setup (#1074)
## Summary For users and Dockerfile that has no ssh key setup, we need to clone by https ## How was it tested? devbox run build devbox create --template apache
1 parent 490a657 commit 59a29ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/templates/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func Init(w io.Writer, template, dir string) error {
3131
return errors.WithStack(err)
3232
}
3333
cmd := exec.Command(
34-
"git", "clone", "git@github.com:jetpack-io/devbox.git", tmp,
34+
"git", "clone", "https://github.com/jetpack-io/devbox.git", tmp,
3535
)
3636
fmt.Fprintf(w, "%s\n", cmd)
3737
cmd.Stderr = os.Stderr

0 commit comments

Comments
 (0)