Skip to content

Commit

Permalink
Update tools/check-git-version.mjs
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
  • Loading branch information
RahulGautamSingh and viceice committed Sep 15, 2021
1 parent 1fb0306 commit ed2601f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check-git-version.mjs
Expand Up @@ -13,7 +13,7 @@ const git = simpleGit();
if (semver.lt(gitVersion, GIT_MINIMUM_VERSION)) {
throw new Error(`Minimum Git version ${GIT_MINIMUM_VERSION} is required`);
}
console.log('Found git version: ' + gitVersion);
shell.echo('Found git version: ', gitVersion);
process.exit(0);
} catch (err) {
shell.echo('ERROR:', err.message);
Expand Down

0 comments on commit ed2601f

Please sign in to comment.