Skip to content

Commit

Permalink
remove extra colon
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Nov 20, 2024
1 parent a938a40 commit 57ab266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli/commands/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57ab266

Please sign in to comment.