File tree Expand file tree Collapse file tree 1 file changed +12
-16
lines changed
Expand file tree Collapse file tree 1 file changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -90,23 +90,19 @@ export async function runInstallProcess(
9090 message : "Choose installation scope..." ,
9191 } ) ;
9292
93- const installScope = await window . showQuickPick (
94- [
95- {
96- label : "Local (just me)" ,
97- description : "Install LocalStack CLI for current user only" ,
98- value : "local" ,
99- } ,
100- {
101- label : "Global (all users)" ,
102- description :
103- "Install LocalStack CLI for all users (requires admin privileges)" ,
104- value : "global" ,
105- } ,
106- ] ,
93+ const installScope = await window . showInformationMessage (
94+ "Choose a LocalStack CLI installation scope" ,
10795 {
108- placeHolder : "Select installation scope" ,
109- ignoreFocusOut : true ,
96+ modal : true ,
97+ } ,
98+
99+ {
100+ title : "Install for current user only" ,
101+ value : "local" ,
102+ } ,
103+ {
104+ title : "Install for all users" ,
105+ value : "global" ,
110106 } ,
111107 ) ;
112108
You can’t perform that action at this time.
0 commit comments