diff options
Diffstat (limited to 'taskcluster/scripts/misc/get-hostutils.sh')
-rwxr-xr-x | taskcluster/scripts/misc/get-hostutils.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/taskcluster/scripts/misc/get-hostutils.sh b/taskcluster/scripts/misc/get-hostutils.sh new file mode 100755 index 0000000000..95173c1b4f --- /dev/null +++ b/taskcluster/scripts/misc/get-hostutils.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +artifact=$(basename "$TOOLCHAIN_ARTIFACT") +project=${artifact%.tar.*} + +cd $GECKO_PATH + +. taskcluster/scripts/misc/tooltool-download.sh + +cd $MOZ_FETCHES_DIR +mv host-utils-* $project +tar -acvf $artifact $project +mkdir -p $UPLOAD_DIR +mv $artifact $UPLOAD_DIR |