Skip to content

Commit 7f00e53

Browse files
tmshortopenshift-merge-bot[bot]
authored andcommitted
UPSTREAM: <carry>: Fix experimental manifest copying
The standard manifest was being copied rather than the experimental manifest. This meant that the expected feature-flags are not present. This is failing now that we are doing a check for those feature-flags. Signed-off-by: Todd Short <[email protected]>
1 parent 982e725 commit 7f00e53

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
@@ -14,6 +14,6 @@ fi
1414

1515
if [ -d /openshift/manifests-experimental ]; then
1616
mkdir -p "${DEST}/experimental/catalogd"
17-
cp -a /openshift/manifests "${DEST}/experimental/catalogd"
17+
cp -a /openshift/manifests-experimental "${DEST}/experimental/catalogd"
1818
fi
1919

openshift/operator-controller/cp-manifests

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

1515
if [ -d /openshift/manifests-experimental ]; then
1616
mkdir -p "${DEST}/experimental/operator-controller"
17-
cp -a /openshift/manifests "${DEST}/experimental/operator-controller"
17+
cp -a /openshift/manifests-experimental "${DEST}/experimental/operator-controller"
1818
fi
1919

0 commit comments

Comments
 (0)