Move cli-version.ts to /codeql-cli/cli-version.ts

This commit is contained in:
Charis Kyriakou
2023-04-27 11:53:32 +00:00
parent 732c67e6cd
commit 8bdb51d281
2 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
import * as semver from "semver";
import { runCodeQlCliCommand } from "./codeql-cli/cli";
import { Logger } from "./common";
import { getErrorMessage } from "./pure/helpers-pure";
import { runCodeQlCliCommand } from "./cli";
import { Logger } from "../common";
import { getErrorMessage } from "../pure/helpers-pure";
/**
* Get the version of a CodeQL CLI.

View File

@@ -13,7 +13,7 @@ import {
showAndLogWarningMessage,
} from "./helpers";
import { extLogger } from "./common";
import { getCodeQlCliVersion } from "./cli-version";
import { getCodeQlCliVersion } from "./codeql-cli/cli-version";
import { ProgressCallback, reportStreamProgress } from "./progress";
import {
codeQlLauncherName,