Skip to content

Commit 77ab3fd

Browse files
Merge pull request #482 from tmshort/fix-cp-manifests
OPRUN-4160: Fix cp-manifests copying of helm charts
2 parents 0ef59d2 + 1490f76 commit 77ab3fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

openshift/catalogd/cp-manifests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ fi
1919

2020
if [ -d /openshift/helm ]; then
2121
mkdir -p "${DEST}/helm/catalogd"
22-
cp -a /openshift/helm "${DEST}/helm/catalogd"
22+
cp -a /openshift/helm/* "${DEST}/helm/catalogd"
2323
fi
2424

openshift/operator-controller/cp-manifests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ fi
1919

2020
if [ -d /openshift/helm ]; then
2121
mkdir -p "${DEST}/helm/operator-controller"
22-
cp -a /openshift/helm "${DEST}/helm/operator-controller"
22+
cp -a /openshift/helm/* "${DEST}/helm/operator-controller"
2323
fi
2424

0 commit comments

Comments
 (0)