Skip to content
This repository has been archived by the owner on Dec 8, 2020. It is now read-only.

Clarify to close message to choose user toolchain #390

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ async function handleMissingRustupUserToolchain(
}
const functionLogger = logger.createChildLogger('handleMissingRustupUserToolchain: ');
functionLogger.debug(`toolchainKind=${toolchainKind}`);
await window.showInformationMessage(`To properly function, the extension needs to know what ${toolchainKind} you want to use`);
await window.showInformationMessage(`To properly function, the extension needs to know what ${toolchainKind} you want to use. Close this message to choose a ${toolchainKind}.`);
const toolchains = getToolchains();
if (toolchains.length === 0) {
functionLogger.error('no toolchains');
Expand Down