Skip to content

Commit e64fd17

Browse files
committed
devops: fix firefox building script on Mac 10.15.1
1 parent fc93b88 commit e64fd17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser_patches/firefox/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd "checkout"
99
if [[ "$(uname)" == "Darwin" ]]; then
1010
# Firefox currently does not build on 10.15 out of the box - it requires SDK for 10.14.
1111
# Make sure the SDK is out there.
12-
if [[ $(sw_vers -productVersion) == "10.15" ]]; then
12+
if [[ $(sw_vers -productVersion) == 10.15* ]]; then
1313
if ! [[ -d $HOME/SDK-archive/MacOSX10.14.sdk ]]; then
1414
echo "As of Nov 2019, Firefox does not build on Mac 10.15 without 10.14 SDK."
1515
echo "Check out instructions on getting 10.14 sdk at https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Mac_OS_X_Prerequisites"

0 commit comments

Comments
 (0)