From 57d7d4594f47d66d8de3eb1b7f4207130a7697ac Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Fri, 18 Oct 2019 11:01:50 +0200 Subject: [PATCH] fix: Test release --- src/helpers/git.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/helpers/git.js b/src/helpers/git.js index 1079933..5fcf9f2 100644 --- a/src/helpers/git.js +++ b/src/helpers/git.js @@ -17,8 +17,7 @@ const git = command => new Promise(async(resolve, reject) => { } try { - core.info(`Exec: git ${command}`) - await exec.exec(`git ${command}`, options) + await exec.exec(`git ${command}`, null, options) resolve(myOutput)