Skip to content

Commit

Permalink
render: change dir path (#824)
Browse files Browse the repository at this point in the history
When #778 got merged
The directory layout has changed and broke the `render-sync`  make target.
This patch should fix it.

Signed-off-by: Talor Itzhak <titzhak@redhat.com>
  • Loading branch information
Tal-or committed Oct 13, 2023
1 parent 14d0647 commit e5181f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/render-sync.sh
Expand Up @@ -8,8 +8,8 @@ _output/cluster-node-tuning-operator render \
--asset-input-dir "${WORKDIR}"/test/e2e/performanceprofile/cluster-setup/manual-cluster/performance,"${WORKDIR}"/test/e2e/performanceprofile/cluster-setup/base/performance \
--asset-output-dir "${ARTIFACT_DIR}"

cp "${ARTIFACT_DIR}"/* "${WORKDIR}"/test/e2e/performanceprofile/testdata/render-expected-output
for f in "${WORKDIR}"/test/e2e/performanceprofile/testdata/render-expected-output/*
cp "${ARTIFACT_DIR}"/* "${WORKDIR}"/test/e2e/performanceprofile/testdata/render-expected-output/default
for f in "${WORKDIR}"/test/e2e/performanceprofile/testdata/render-expected-output/default/*
do
sed -i "s/uid:.*/uid: \"\"/" "${f}"
done
Expand Down

0 comments on commit e5181f4

Please sign in to comment.