Use the version from package.json in the runner
This commit is contained in:
Родитель
4164096c0d
Коммит
1a4cdd35b9
|
@ -22,8 +22,10 @@ const logging_1 = require("./logging");
|
|||
const repository_1 = require("./repository");
|
||||
const upload_lib = __importStar(require("./upload-lib"));
|
||||
const util_1 = require("./util");
|
||||
// eslint-disable-next-line import/no-commonjs
|
||||
const pkg = require("../package.json");
|
||||
const program = new commander_1.Command();
|
||||
program.version("0.0.1");
|
||||
program.version(pkg.version);
|
||||
function getTempDir(userInput) {
|
||||
const tempDir = path.join(userInput || process.cwd(), "codeql-runner");
|
||||
if (!fs.existsSync(tempDir)) {
|
||||
|
|
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -24,8 +24,11 @@ import {
|
|||
getGitHubAuth,
|
||||
} from "./util";
|
||||
|
||||
// eslint-disable-next-line import/no-commonjs
|
||||
const pkg = require("../package.json");
|
||||
|
||||
const program = new Command();
|
||||
program.version("0.0.1");
|
||||
program.version(pkg.version);
|
||||
|
||||
function getTempDir(userInput: string | undefined): string {
|
||||
const tempDir = path.join(userInput || process.cwd(), "codeql-runner");
|
||||
|
|
Загрузка…
Ссылка в новой задаче