From 2ce082641113274001beb783d040d6e7e6731b55 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Thu, 28 Dec 2023 16:28:16 +0530 Subject: [PATCH] log --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index fab67706d0..fa6d07089b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -65,10 +65,10 @@ task('syncLibVersions', async function () { }); async function setBranchHead(branchName, head) { - await promisifyExec(`git checkout ${branchName}`); - await promisifyExec(`git pull origin ${branchName}`); + console.log(await promisifyExec(`git checkout ${branchName}`)); + console.log(await promisifyExec(`git pull origin ${branchName}`)); console.log(`pull done for ${branchName}`) - await promisifyExec(`git reset --hard ${head}`); + console.log(await promisifyExec(`git reset --hard ${head}`)); await promisifyExec(`git push -f origin ${branchName}`); }