Skip to content

Commit 1efcf67

Browse files
author
--global
committed
feedback
1 parent 46dc399 commit 1efcf67

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.submodules/setup/__main__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ def print_intro():
103103
answers = inquirer.prompt(
104104
[
105105
inquirer.Confirm(
106-
"exit",
107-
message="Have you already set up your container and would like exit?",
106+
"proceed",
107+
message="Would you like to proceed with setting up your dev container?",
108108
)
109109
]
110110
)
111111

112-
if answers and t.cast(bool, answers["exit"]):
112+
if answers and not t.cast(bool, answers["proceed"]):
113113
sys.exit()
114114

115115

0 commit comments

Comments
 (0)