Pin the electron version to 33.3.2 for RHEL 8
parent
cf2328d2cd
commit
d7faa85338
|
@ -141,6 +141,11 @@ _build_runtime() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ELECTRON_VERSION="$(npm info electron version)"
|
ELECTRON_VERSION="$(npm info electron version)"
|
||||||
|
# Pin the electron version to "33.3.2" due to the following issue
|
||||||
|
# https://github.com/electron/electron/issues/45884
|
||||||
|
if [ "$1" == 'redhat' ] && [ "${OS_VERSION}" == "8" ]; then
|
||||||
|
ELECTRON_VERSION="33.3.2"
|
||||||
|
fi
|
||||||
|
|
||||||
pushd "${BUILDROOT}" > /dev/null || exit
|
pushd "${BUILDROOT}" > /dev/null || exit
|
||||||
while true;do
|
while true;do
|
||||||
|
|
Loading…
Reference in New Issue