This is an automated email from the ASF dual-hosted git repository. ricardozanini pushed a commit to branch radtriste-fix-pipelines in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-images.git
commit d65e88f59ee67bb80edc9a553ea54b748800d94e Author: Ricardo Zanini <[email protected]> AuthorDate: Tue Nov 21 15:40:00 2023 -0300 Add E command handler to find script Signed-off-by: Ricardo Zanini <[email protected]> --- modules/kogito-swf/common/scripts/added/build-app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kogito-swf/common/scripts/added/build-app.sh b/modules/kogito-swf/common/scripts/added/build-app.sh index d570ffea..004c53c2 100755 --- a/modules/kogito-swf/common/scripts/added/build-app.sh +++ b/modules/kogito-swf/common/scripts/added/build-app.sh @@ -22,7 +22,7 @@ log_info "-> Copying files from ${resources_path}, if any..." if [ -n "${resources_path}" ]; then destination="${KOGITO_HOME}/serverless-workflow-project/src/main/resources/" cd "${resources_path}" && - rsync -av --remove-source-files --prune-empty-dirs --progress --files-from <(find . -regex '.*\.(yaml|yml|json|properties)$' -type f) . "$destination" && + rsync -av --remove-source-files --prune-empty-dirs --progress --files-from <(find -E . -regex '.*\.(yaml|yml|json|properties)$' -type f) . "$destination" && cd - find "${resources_path}" -name 'jvm.config' -exec echo "--> found {}" \; -exec mkdir -p .mvn \; -exec cp -v {} .mvn/ \; else --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
