This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push: new e350ab9 Fixed typos in the native promotion guide e350ab9 is described below commit e350ab9d5b70bb4952ff64b34e74dd0170153821 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Tue Apr 14 14:32:16 2020 +0200 Fixed typos in the native promotion guide --- docs/modules/ROOT/pages/promote-jvm-only-extensions.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/promote-jvm-only-extensions.adoc b/docs/modules/ROOT/pages/promote-jvm-only-extensions.adoc index b410a1c..608edd6 100644 --- a/docs/modules/ROOT/pages/promote-jvm-only-extensions.adoc +++ b/docs/modules/ROOT/pages/promote-jvm-only-extensions.adoc @@ -29,8 +29,8 @@ $ { git mv "extensions-jvm/${EXT}" "extensions/${EXT}" sed -i -r "s/(.*)activemq(.*)/\1activemq\2\n\1${EXT}\2/g" extensions/pom.xml sed -i -r "s/(.*)activemq(.*)/\1activemq\2\n\1${EXT}\2/g" integration-tests/pom.xml - sed -i "s/camel-quarkus-grpc-parent/camel-quarkus-integration-tests/g" "integration-tests/${EXT}/pom.xml" - sed -i "s/camel-quarkus-grpc-integration-test/camel-quarkus-integration-test-${EXT}/g" "integration-tests/${EXT}/pom.xml" + sed -i -r "s/camel-quarkus-${EXT}-parent/camel-quarkus-integration-tests/g" "integration-tests/${EXT}/pom.xml" + sed -i -r "s/camel-quarkus-${EXT}-integration-test/camel-quarkus-integration-test-${EXT}/g" "integration-tests/${EXT}/pom.xml" sed -i -r "s/Quarkus :: (.*) :: Integration Test/Quarkus :: Integration Test :: \1/g" "integration-tests/${EXT}/pom.xml" } ----