Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 12 additions & 16 deletions src/utils/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,23 +90,19 @@ export async function runInstallProcess(
message: "Choose installation scope...",
});

const installScope = await window.showQuickPick(
[
{
label: "Local (just me)",
description: "Install LocalStack CLI for current user only",
value: "local",
},
{
label: "Global (all users)",
description:
"Install LocalStack CLI for all users (requires admin privileges)",
value: "global",
},
],
const installScope = await window.showInformationMessage(
"Choose a LocalStack CLI installation scope",
{
placeHolder: "Select installation scope",
ignoreFocusOut: true,
modal: true,
},

{
title: "Install for current user only",
value: "local",
},
{
title: "Install for all users",
value: "global",
},
);

Expand Down
Loading