From 6a8b54bbea45bd27938abdd8c90779fdea96de2f Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 28 Dec 2023 19:41:29 +0530 Subject: [PATCH] update log --- gulpfile.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 580e8e78d3..3fb69e60ff 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -10,17 +10,18 @@ const axios = require('axios'); var packageJSON = require('./package.json'); /** - * @dev Task to create git tag using version from package.json and pushing this specific tag + * @dev Task to create git tag using version from package.json of remix_beta branch and pushing this specific tag */ task('publishTagfromBeta', async function () { let cmdOp = await promisifyExec(`git checkout remix_beta`) - console.log(cmdOp.stdout) + console.info(cmdOp.stdout) cmdOp = await promisifyExec(`git pull origin remix_beta`) - console.log(cmdOp.stdout) + console.info(cmdOp.stdout) const betaPackageJSON = require('./package.json'); const tag = "v" + betaPackageJSON.version + console.info(`Creating tag ${tag} from remix_beta branch`) cmdOp = await promisifyExec(`git tag ${tag}; git push --tags`); - console.log(cmdOp.stdout) + console.info(cmdOp.stdout) }); /**