From ddb68a76f26a8b425c016558afe8afe7859967c0 Mon Sep 17 00:00:00 2001 From: Ilya Kuznetsov Date: Wed, 20 Nov 2024 11:33:09 +0100 Subject: [PATCH] fix: Update skip uploading log entry with more clear message --- bundle/deploy/files/upload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/deploy/files/upload.go b/bundle/deploy/files/upload.go index f4b2b3f4..452850dc 100644 --- a/bundle/deploy/files/upload.go +++ b/bundle/deploy/files/upload.go @@ -25,7 +25,7 @@ func (m *upload) Name() string { func (m *upload) Apply(ctx context.Context, b *bundle.Bundle) diag.Diagnostics { if config.IsExplicitlyEnabled(b.Config.Presets.SourceLinkedDeployment) { - cmdio.LogString(ctx, "Source-linked deployment is enabled. Resources will point to the source files directly without making copies") + cmdio.LogString(ctx, "Source-linked deployment is enabled. Deployed resources reference the source files in your working tree instead of separate copies.") return nil }