changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/get-lust.sh

changeset 322: 167a8ece2416
parent: 989b1b4782dc
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 21:18:15 -0400
permissions: -rwxr-xr-x
description: ugh2
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