changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: fix core pack install

changeset 333: e62738da9ac3
parent 332: 6d808b5879f2
child 334: 22a7f2ae775f
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 08 Jul 2024 12:49:42 -0400
files: scripts/install-core-pack.sh
description: fix core pack install
     1.1--- a/scripts/install-core-pack.sh	Mon Jul 08 11:37:06 2024 -0400
     1.2+++ b/scripts/install-core-pack.sh	Mon Jul 08 12:49:42 2024 -0400
     1.3@@ -1,7 +1,8 @@
     1.4 #!/bin/sh
     1.5 set -e
     1.6-cd .stash/src
     1.7-curl -O https://packy.compiler.company/dist/x86_64-unknown-linux-gnu/core.tar.zst
     1.8+TARGET="${1:-x86_64-unknown-linux-gnu}"
     1.9+cd .stash/tmp
    1.10+curl -O "https://packy.compiler.company/dist/${TARGET}/pack/core.tar.zst"
    1.11 unzstd core.tar.zst
    1.12 tar -xvf core.tar
    1.13 cd core