summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doPatch.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/doPatch.go b/doPatch.go
index c7aeca9..f221538 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -276,6 +276,7 @@ func applyPatch(repo *gitpb.Repo, p *forgepb.Patch) (string, error) {
// git apply --check /tmp/0001-renamed-file-and-added-stuff.patch
cmd = []string{"git", "apply", "--check", tmpname}
+ log.Info("Running:", cmd)
stats = repo.Run(cmd)
if stats.Error != nil {
panic("git apply --check failed")