forked from mirrors/gecko-dev
Switches from `buildconfig.substs` to `bootstrap_toolchain` for the repackage job
Refactors mozpack/dmg to not depend on the environment; Moves path resolution of tools up to `mozbuild.action.{make_dmg|unpack_dmg}`
Update syntax to python 3.7+
Differential Revision: https://phabricator.services.mozilla.com/D163129
14 lines
302 B
Bash
Executable file
14 lines
302 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building hfsplus for Linux.
|
|
|
|
cd $GECKO_PATH
|
|
|
|
export PATH=$PATH:$MOZ_FETCHES_DIR/clang/bin
|
|
|
|
build/unix/build-hfsplus/build-hfsplus.sh $MOZ_FETCHES_DIR
|
|
|
|
# Put a tarball in the artifacts dir
|
|
mkdir -p $UPLOAD_DIR
|
|
cp $MOZ_FETCHES_DIR/hfsplus.tar.* $UPLOAD_DIR
|