Skip to content

Commit

Permalink
devops: fix firefox preferences build on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Feb 12, 2020
1 parent 451ec72 commit efa567d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion browser_patches/firefox/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ else
fi

./mach build

OBJ_FOLDER=$(ls -1 | grep obj-)
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
if [[ "$(uname)" == "Darwin" ]]; then
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist
else
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
fi

0 comments on commit efa567d

Please sign in to comment.