Skip to content

Commit

Permalink
Add E command handler to find script
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Zanini <[email protected]>
  • Loading branch information
ricardozanini committed Nov 21, 2023
1 parent b94d9a6 commit 2082094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/kogito-swf/common/scripts/added/build-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2082094

Please sign in to comment.