blob: 0b6fe9417ed60283a977c68b33747b489ce711ba [file] [log] [blame]
#!/bin/bash
REMOTE=rust
REPO=https://github.com/rust-lang/rust
REV=9af8d42ec79558225043189e429e9d652ff89eab
set -euo pipefail
cd "$(dirname "${BASH_SOURCE[0]}")"
mkdir -p rust
cd rust
git init
if git remote | grep --fixed-strings --line-regexp --quiet "$REMOTE"; then
git remote set-url "$REMOTE" "$REPO"
else
git remote add "$REMOTE" "$REPO"
fi
if ! git cat-file -t "$REV" >/dev/null 2>&1; then
git fetch "$REMOTE" master
fi
git checkout "$REV"