mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
* Update simple-git 1.116.0 -> 3.10.0 (#137232) * Updates simple-git to 3.10.0 * Replaces deprecated simple-git imports. Adds needed null check for git status. * Updated simple-git package dep with caret. * Fixes call to deprecated simple-git function prototype.
37 lines
1 KiB
TypeScript
37 lines
1 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0; you may not use this file except in compliance with the Elastic License
|
|
* 2.0.
|
|
*/
|
|
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
// @ts-ignore barely used, untyped module
|
|
import simpleGit from 'simple-git';
|
|
|
|
const gitDir = path.resolve(__dirname, '..', '..');
|
|
|
|
export async function gitInfo() {
|
|
if (!fs.existsSync(path.join(gitDir, '.git'))) {
|
|
// This info is only used for debugging purposes in the log
|
|
// So if .git is not available for some reason, it's fine to output this
|
|
return {
|
|
number: 1,
|
|
sha: process.env.GIT_COMMIT || process.env.BUILDKITE_COMMIT || 'none',
|
|
};
|
|
}
|
|
|
|
const log = await simpleGit(gitDir).log();
|
|
|
|
return new Promise<{ number: number; sha: string }>((resolve, reject) => {
|
|
if (!log.latest) {
|
|
reject();
|
|
} else {
|
|
resolve({
|
|
number: log.total,
|
|
sha: log.latest.hash,
|
|
});
|
|
}
|
|
});
|
|
}
|