changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/get-lust.sh

changeset 339: b8fa25450726
parent: 989b1b4782dc
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 21 Jul 2024 00:40:31 -0400
permissions: -rwxr-xr-x
description: tweak
1 #!/usr/bin/env bash
2 # install the Lonely Rust compiler source code
3 TARGETDIR=${1:-.stash/lust}
4 hg clone https://vc.compiler.company/comp/lust $TARGETDIR
5 pushd $TARGETDIR
6 make
7 sudo make install
8 popd