Skip to content
Snippets Groups Projects
setup.sh 474 B
Newer Older
echo "Downloading latest pkgutils"
git submodule update --init --remote pkgutils
cargo update --manifest-path pkgutils/Cargo.toml
echo "Defaulting to rust nightly"
Jeremy Soller's avatar
Jeremy Soller committed
rustup override set nightly
Jeremy Soller's avatar
Jeremy Soller committed
echo "Update rust nightly"
rustup update nightly
Jeremy Soller's avatar
Jeremy Soller committed
echo "Downloading rust source"
rustup component add rust-src
if [ -z "$(which cargo-config)" ]
then
    echo "Installing cargo-config"
    cargo install -f cargo-config
fi
Jeremy Soller's avatar
Jeremy Soller committed