Skip to content

Commit 03ec0c5

Browse files
tmshortci-robot
authored andcommitted
UPSTREAM: <carry>: Fix cp-manifests copying of helm charts
The method used to copy the helm charts is including an extra `helm` directory in the destination path, that is making the cluster-olm-operator code just a bit more complicated than it needs to be. This fixes the copy location. Signed-off-by: Todd Short <[email protected]>
1 parent 3af067b commit 03ec0c5

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)