From 6bfb377c32c27e881a77139109c1d40afed12415 Mon Sep 17 00:00:00 2001 From: Tycho Bokdam Date: Wed, 29 Apr 2020 10:08:40 +0200 Subject: [PATCH] fix: Fixed git being called incorrectly --- src/helpers/git.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/git.js b/src/helpers/git.js index d6c0ffa..bbdc944 100644 --- a/src/helpers/git.js +++ b/src/helpers/git.js @@ -90,7 +90,7 @@ module.exports = new (class Git { * @return {Promise<>} */ pull = () => ( - this.exec(`git pull --unshallow`) + this.exec(`pull --unshallow`) ) /**