Skip to content

Commit 802074c

Browse files
authored
[polish] capitalize the default answer in direnv integration question (#545)
## Summary It is common convention to capitalize the default answer in linux CLI prompts. ## How was it tested? the default behavior appears to be No
1 parent aae14a4 commit 802074c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/impl/devbox.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ func (d *Devbox) GenerateEnvrc(force bool) error {
503503
// prompt for direnv allow
504504
var result string
505505
prompt := &survey.Input{
506-
Message: "Do you want to enable direnv integration for this devbox project? [y/n]",
506+
Message: "Do you want to enable direnv integration for this devbox project? [y/N]",
507507
}
508508
err := survey.AskOne(prompt, &result)
509509
if err != nil {

0 commit comments

Comments
 (0)