From 57ab266485d3e5c8e6486d2c9b0724487364e9e0 Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Tue, 19 Nov 2024 21:57:10 -0500 Subject: [PATCH] remove extra colon --- cli/cli/commands/run/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli/commands/run/run.go b/cli/cli/commands/run/run.go index d01811a0de..e84f4046ae 100755 --- a/cli/cli/commands/run/run.go +++ b/cli/cli/commands/run/run.go @@ -943,7 +943,7 @@ func updateKurtosisYamlWithReplaceDirectives(packageNamesToLocalFilepaths map[st if err != nil { return stacktrace.Propagate(err, "An error occurred reading '%s' file.", kurtosisYMLFilePath) } - replaceDirectiveStr := fmt.Sprintf("%s:\n", packageReplaceKeyInKurtosisYml) + replaceDirectiveStr := fmt.Sprintf("%s\n", packageReplaceKeyInKurtosisYml) for packageName, localFilepath := range packageNamesToLocalFilepaths { // TODO: this assumes the users kurtosis yml is indented by two spaces which might always not be true and this could break a users kurtosis.yml // TODO: find a way to handle other indentation levels