changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / scripts/get-lust.sh

changeset 30: 4e73da2d9c63
parent: 3491c1d1815d
child: 745d8b0118e5
author: ellis <ellis@rwest.io>
date: Sat, 30 Dec 2023 02:19:39 -0500
permissions: -rwxr-xr-x
description: added virt/build-demo.sh
1 #!/usr/bin/bash
2 # install the Lonely Rust compiler source code
3 TARGETDIR=${1:-$(realpath build/lust)}
4 hg clone https://vc.compiler.company/lust $TARGETDIR
5 pushd $TARGETDIR
6 make
7 sudo make install
8 popd