diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /taskcluster/scripts/misc/get-hostutils.sh | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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 |