From a8df284e9beb7077ebc23915ad67d2a32e3cace1 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Wed, 24 Feb 2021 17:29:51 -0800 Subject: [PATCH] local: improve log message Signed-off-by: Andrea Luzzardi --- dagger/pipeline.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dagger/pipeline.go b/dagger/pipeline.go index 2a2e17f8..606c7b75 100644 --- a/dagger/pipeline.go +++ b/dagger/pipeline.go @@ -267,7 +267,7 @@ func (p *Pipeline) Local(ctx context.Context, op *compiler.Value) error { llb.Local( dir, llb.FollowPaths(include), - llb.WithCustomName(p.vertexNamef("Local %s", dir)), + llb.WithCustomName(p.vertexNamef("Local %s [transfer]", dir)), // Without hint, multiple `llb.Local` operations on the // same path get a different digest. @@ -277,6 +277,7 @@ func (p *Pipeline) Local(ctx context.Context, op *compiler.Value) error { "/", "/", ), + llb.WithCustomName(p.vertexNamef("Local %s [copy]", dir)), ) })