From dad8053e0662a9e0c357f17237a8fd00cee8003e Mon Sep 17 00:00:00 2001 From: Shinichiro Hamaji Date: Tue, 21 Apr 2015 17:55:50 +0900 Subject: Do not use filepath.Clean to normalize inputs/outputs Only leading './'s should be stripped. --- exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exec.go') diff --git a/exec.go b/exec.go index 3c0afba..02dc239 100644 --- a/exec.go +++ b/exec.go @@ -224,7 +224,7 @@ func exitStatus(err error) int { func (ex *Executor) build(n *DepNode, neededBy string) (int64, error) { output := n.Output - Log("Building: %s", output) + Log("Building: %s for %s", output, neededBy) ex.buildCnt++ if ex.buildCnt%100 == 0 { ex.reportStats() -- cgit v1.2.3