Skip to content

Commit efa567d

Browse files
committed
devops: fix firefox preferences build on mac
1 parent 451ec72 commit efa567d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

browser_patches/firefox/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ else
3737
fi
3838

3939
./mach build
40+
4041
OBJ_FOLDER=$(ls -1 | grep obj-)
41-
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
42+
if [[ "$(uname)" == "Darwin" ]]; then
43+
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist
44+
else
45+
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
46+
fi
4247

0 commit comments

Comments
 (0)