From ed2601f8d628f0731a6b81d80dabcbc825344f41 Mon Sep 17 00:00:00 2001 From: RahulGautamSingh Date: Wed, 15 Sep 2021 18:24:08 +0545 Subject: [PATCH] Update tools/check-git-version.mjs Co-authored-by: Michael Kriese --- tools/check-git-version.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-git-version.mjs b/tools/check-git-version.mjs index 98d8b618e0e248..40741fa7f51dff 100644 --- a/tools/check-git-version.mjs +++ b/tools/check-git-version.mjs @@ -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);