We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf2328d commit d7faa85Copy full SHA for d7faa85
pkg/linux/build-functions.sh
@@ -141,6 +141,11 @@ _build_runtime() {
141
fi
142
143
ELECTRON_VERSION="$(npm info electron version)"
144
+ # Pin the electron version to "33.3.2" due to the following issue
145
+ # https://github.com/electron/electron/issues/45884
146
+ if [ "$1" == 'redhat' ] && [ "${OS_VERSION}" == "8" ]; then
147
+ ELECTRON_VERSION="33.3.2"
148
+ fi
149
150
pushd "${BUILDROOT}" > /dev/null || exit
151
while true;do
0 commit comments