devops: fix firefox preferences build on mac

This commit is contained in:
Andrey Lushnikov 2020-02-11 16:22:31 -08:00
Родитель 451ec729b4
Коммит efa567d1b4
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -37,6 +37,11 @@ else
fi
./mach build
OBJ_FOLDER=$(ls -1 | grep obj-)
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
OBJ_FOLDER=$(ls -1 | grep obj-)
if [[ "$(uname)" == "Darwin" ]]; then
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist
else
node ../install-preferences.js $PWD/$OBJ_FOLDER/dist/bin
fi