From e1ffc92e86bd4e6bebd349702278b0c7c4b9d8b8 Mon Sep 17 00:00:00 2001 From: Casey Lee Date: Sat, 14 Mar 2020 00:13:18 -0700 Subject: [PATCH] fix #150 - disable dryrun in git clone --- act/common/git.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/act/common/git.go b/act/common/git.go index 969a7518..4f7f1e6b 100644 --- a/act/common/git.go +++ b/act/common/git.go @@ -195,10 +195,6 @@ func NewGitCloneExecutor(input NewGitCloneExecutorInput) Executor { logger.Infof(" \u2601 git clone '%s' # ref=%s", input.URL, input.Ref) logger.Debugf(" cloning %s to %s", input.URL, input.Dir) - if Dryrun(ctx) { - return nil - } - cloneLock.Lock() defer cloneLock.Unlock()