Skip to content

Commit 4f58be1

Browse files
authored
Unblock production image generation (#1319)
While #1314 unblocked the CI pipeline, it broke production image generation due to using unbound $OPENSHIFT_CI variable. Fix this. Co-authored-by: Jiri Mencak <[email protected]>
1 parent 81e7ec5 commit 4f58be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/dockerfile_install_support.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ else
4747
tuned-profiles-nfv-host tuned-profiles-openshift tuned-profiles-oracle tuned-profiles-postgresql tuned-profiles-realtime \
4848
tuned-profiles-sap tuned-profiles-sap-hana tuned-profiles-spectrumscale \
4949
$INSTALL_PKGS"
50-
test "$OPENSHIFT_CI" && extra_opts="--disablerepo *-server-ose*" || extra_opts="" # Workaround not to pull python3-perf from "ose" repos
50+
test "${OPENSHIFT_CI:-}" && extra_opts="--disablerepo *-server-ose*" || extra_opts="" # Workaround not to pull python3-perf from "ose" repos
5151
dnf install --setopt=tsflags=nodocs -y $extra_opts ${INSTALL_PKGS}
5252

5353
fi

0 commit comments

Comments
 (0)