changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/get-lust.sh

changeset 38: 197d061b1f2e
parent: 745d8b0118e5
child: e69b070d4d47
author: ellis <ellis@rwest.io>
date: Sat, 30 Dec 2023 23:45:41 -0500
permissions: -rwxr-xr-x
description: 2
1 #!/usr/bin/env bash
2 # install the Lonely Rust compiler source code
3 TARGETDIR=${1:-build/lust}
4 hg clone https://vc.compiler.company/lust $TARGETDIR
5 pushd $TARGETDIR
6 make
7 sudo make install
8 popd