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.git
The following commit(s) were added to refs/heads/main by this push:
new 705ef623e21 (chores) build: fix deployment build
705ef623e21 is described below
commit 705ef623e21e53ac985861656a546412c18edff0
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sun Jun 25 10:15:24 2023 +0200
(chores) build: fix deployment build
Added the missing sed flag to do the in-place replacement
---
Jenkinsfile.deploy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Jenkinsfile.deploy b/Jenkinsfile.deploy
index 62e9dd070e6..32a85b7971d 100644
--- a/Jenkinsfile.deploy
+++ b/Jenkinsfile.deploy
@@ -67,7 +67,7 @@ pipeline {
}
steps {
// Work-around for
https://issues.apache.org/jira/browse/INFRA-24713
- sh 'sed -e "s/3.9.2/3.8.8/g"
.mvn/wrapper/maven-wrapper.properties'
+ sh 'sed -i -e "s/3.9.2/3.8.8/g"
.mvn/wrapper/maven-wrapper.properties'
sh "./mvnw $MAVEN_PARAMS -Pdeploy,apache-snapshots
-Dmaven.test.skip.exec=true clean deploy"
}
}