mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-11 02:49:06 +00:00
11 lines
244 B
Bash
11 lines
244 B
Bash
#!/bin/bash -e
|
|
|
|
cd $SOURCE
|
|
TOP=$(cd ..; pwd)
|
|
export MOZBUILD_STATE_PATH=$TOP/mozbuild-state
|
|
[ -d $MOZBUILD_STATE_PATH ] || mkdir $MOZBUILD_STATE_PATH
|
|
|
|
export MOZCONFIG=$SOURCE/browser/config/mozconfigs/linux64/hazards
|
|
|
|
exec ./mach build -v -j8
|