Skip to content

Commit 117b675

Browse files
committed
License status tracker reports as waiting for dependencies instead of undefined
1 parent f97af4b commit 117b675

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/license.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export function createLicenseStatusTracker(
112112

113113
const cliPath = cliTracker.cliPath();
114114
if (!cliPath) {
115-
return undefined;
115+
return "waiting_for_dependencies";
116116
}
117117

118118
const isLicenseValid = await checkIsLicenseValid(cliPath, outputChannel);

src/utils/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ async function pullDockerImage(
7777
}
7878
}
7979

80-
export type SetupStatus = "ok" | "setup_required";
80+
export type SetupStatus = "ok" | "setup_required" | "waiting_for_dependencies";
8181

8282
export interface SetupStatusTracker extends Disposable {
8383
status(): SetupStatus | undefined;

0 commit comments

Comments
 (0)