We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 726e678 commit 0f04103Copy full SHA for 0f04103
cmd/create.go
@@ -3,7 +3,6 @@ package cmd
3
import (
4
"context"
5
"encoding/base64"
6
- "fmt"
7
8
"github.com/loft-sh/devpod/pkg/log"
9
"github.com/loft-sh/devpod/pkg/ssh"
@@ -92,10 +91,7 @@ users:
92
91
- ` + string(publicKey) + `
93
`
94
95
- fmt.Printf("Cloud Init Config: %v\n", resultScript)
96
-
97
resultScript = base64.StdEncoding.EncodeToString([]byte(resultScript))
98
- fmt.Printf("Cloud Init B64: %v\n", resultScript)
99
return resultScript, nil
100
}
101
0 commit comments