From 1a5ea50aa81112c745030b3cf421a9baebcdb9f5 Mon Sep 17 00:00:00 2001 From: AnandkumarPatel Date: Wed, 25 Feb 2015 14:04:35 -0800 Subject: [PATCH] Remove comment and b.UtilizeCache check. Signed-off-by: AnandkumarPatel --- builder/internals.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder/internals.go b/builder/internals.go index e554fd3026..f6b929f2b6 100644 --- a/builder/internals.go +++ b/builder/internals.go @@ -187,8 +187,8 @@ func (b *Builder) runContextCommand(args []string, allowRemote bool, allowDecomp if err != nil { return err } - // If we do not have at least one hash, never use the cache - if hit && b.UtilizeCache { + + if hit { return nil }