We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6751d6c commit 7a91703Copy full SHA for 7a91703
modules/s2i/core/bash/artifacts/opt/jboss/container/s2i/core/s2i-core
@@ -103,7 +103,7 @@ function s2i_core_copy_deployments() {
103
local relative_source=$(realpath --relative-to "${S2I_SOURCE_DIR}" "${1}/${S2I_SOURCE_DEPLOYMENTS_DIR}")
104
log_info "Copying deployments from $relative_source to ${S2I_TARGET_DEPLOYMENTS_DIR}..."
105
for filter in ${S2I_SOURCE_DEPLOYMENTS_FILTER:-*}; do
106
- find "${S2I_SOURCE_DIR}/${relative_source}/" -maxdepth 1 -name "${filter}" | xargs -I '{}' -r cp -Lrv '{}' "${S2I_TARGET_DEPLOYMENTS_DIR}"
+ find "${S2I_SOURCE_DIR}/${relative_source}/" -maxdepth 1 -name "${filter}" | xargs -I '{}' -r cp -Lrpv '{}' "${S2I_TARGET_DEPLOYMENTS_DIR}"
107
done
108
fi
109
0 commit comments