# HG changeset patch # User Richard Westhaver # Date 1720457382 14400 # Node ID e62738da9ac35887b53c4c40ce55453c642c7e0f # Parent 6d808b5879f27b3140f4bf133d98d1a024e42021 fix core pack install diff -r 6d808b5879f2 -r e62738da9ac3 scripts/install-core-pack.sh --- a/scripts/install-core-pack.sh Mon Jul 08 11:37:06 2024 -0400 +++ b/scripts/install-core-pack.sh Mon Jul 08 12:49:42 2024 -0400 @@ -1,7 +1,8 @@ #!/bin/sh set -e -cd .stash/src -curl -O https://packy.compiler.company/dist/x86_64-unknown-linux-gnu/core.tar.zst +TARGET="${1:-x86_64-unknown-linux-gnu}" +cd .stash/tmp +curl -O "https://packy.compiler.company/dist/${TARGET}/pack/core.tar.zst" unzstd core.tar.zst tar -xvf core.tar cd core