While here, since the tooltool call from the cctools build scripts was verbose, make the one in tooltool-download.sh verbose. It will benefit the other things using tooltool-download.sh, making debugging easier when one needs to look at the tooltool download logs...
12 lines
341 B
Bash
12 lines
341 B
Bash
# Fetch a tooltool manifest.
|
|
|
|
cd $HOME/workspace/build/src
|
|
|
|
chmod +x python/mozbuild/mozbuild/action/tooltool.py
|
|
: TOOLTOOL_CACHE ${TOOLTOOL_CACHE:=/home/worker/tooltool-cache}
|
|
export TOOLTOOL_CACHE
|
|
|
|
./python/mozbuild/mozbuild/action/tooltool.py -v --url=http://relengapi/tooltool/ -m "${TOOLTOOL_MANIFEST}" fetch
|
|
|
|
cd $OLDPWD
|