fix: Re-add cloning the repo to install scripts
This commit is contained in:
parent
a03d9655a8
commit
3d9b03c52b
|
@ -73,8 +73,12 @@ if (!($LASTEXITCODE -eq 0)) {
|
||||||
$version = Invoke-WebRequest -UseBasicParsing https://api.github.com/repos/rust-lang/rustlings/releases/latest `
|
$version = Invoke-WebRequest -UseBasicParsing https://api.github.com/repos/rust-lang/rustlings/releases/latest `
|
||||||
| ConvertFrom-Json | Select-Object -ExpandProperty tag_name
|
| ConvertFrom-Json | Select-Object -ExpandProperty tag_name
|
||||||
|
|
||||||
|
Write-Host "Checking out version $version..."
|
||||||
|
Set-Location $path
|
||||||
|
git checkout -q tags/$version
|
||||||
|
|
||||||
Write-Host "Installing the 'rustlings' executable..."
|
Write-Host "Installing the 'rustlings' executable..."
|
||||||
cargo install --force --git https://github.com/rust-lang/rustlings --tag $version
|
cargo install --force --path .
|
||||||
if (!(Get-Command rustlings -ErrorAction SilentlyContinue)) {
|
if (!(Get-Command rustlings -ErrorAction SilentlyContinue)) {
|
||||||
Write-Host "WARNING: Please check that you have '~/.cargo/bin' in your PATH environment variable!"
|
Write-Host "WARNING: Please check that you have '~/.cargo/bin' in your PATH environment variable!"
|
||||||
}
|
}
|
||||||
|
|
10
install.sh
10
install.sh
|
@ -82,11 +82,19 @@ else
|
||||||
echo "SUCCESS: Rust is up to date"
|
echo "SUCCESS: Rust is up to date"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Path=${1:-rustlings/}
|
||||||
|
echo "Cloning Rustlings at $Path..."
|
||||||
|
git clone -q https://github.com/rust-lang/rustlings $Path
|
||||||
|
|
||||||
Version=$(curl -s https://api.github.com/repos/rust-lang/rustlings/releases/latest | python -c "import json,sys;obj=json.load(sys.stdin);print(obj['tag_name']);")
|
Version=$(curl -s https://api.github.com/repos/rust-lang/rustlings/releases/latest | python -c "import json,sys;obj=json.load(sys.stdin);print(obj['tag_name']);")
|
||||||
CargoBin="${CARGO_HOME:-$HOME/.cargo}/bin"
|
CargoBin="${CARGO_HOME:-$HOME/.cargo}/bin"
|
||||||
|
|
||||||
|
echo "Checking out version $Version..."
|
||||||
|
cd $Path
|
||||||
|
git checkout -q tags/$Version
|
||||||
|
|
||||||
echo "Installing the 'rustlings' executable..."
|
echo "Installing the 'rustlings' executable..."
|
||||||
cargo install --force --git https://github.com/rust-lang/rustlings --tag $Version
|
cargo install --force --path .
|
||||||
|
|
||||||
if ! [ -x "$(command -v rustlings)" ]
|
if ! [ -x "$(command -v rustlings)" ]
|
||||||
then
|
then
|
||||||
|
|
Loading…
Reference in New Issue