This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 7be519152882e17c7a8989da9970085ded00eba0 Author: nicolaferraro <[email protected]> AuthorDate: Mon Jun 7 15:23:12 2021 +0200 Fix #2361: allow multiline properties by correctly encoding them --- pkg/cmd/run.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/run.go b/pkg/cmd/run.go index 43164c3..585f991 100644 --- a/pkg/cmd/run.go +++ b/pkg/cmd/run.go @@ -18,6 +18,7 @@ limitations under the License. package cmd import ( + "bytes" "context" "encoding/json" "fmt"
