We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f97af4b commit 117b675Copy full SHA for 117b675
src/utils/license.ts
@@ -112,7 +112,7 @@ export function createLicenseStatusTracker(
112
113
const cliPath = cliTracker.cliPath();
114
if (!cliPath) {
115
- return undefined;
+ return "waiting_for_dependencies";
116
}
117
118
const isLicenseValid = await checkIsLicenseValid(cliPath, outputChannel);
src/utils/setup.ts
@@ -77,7 +77,7 @@ async function pullDockerImage(
77
78
79
80
-export type SetupStatus = "ok" | "setup_required";
+export type SetupStatus = "ok" | "setup_required" | "waiting_for_dependencies";
81
82
export interface SetupStatusTracker extends Disposable {
83
status(): SetupStatus | undefined;
0 commit comments