do a recursive fetch for rust sources
This commit is contained in:
parent
0a0aed2b31
commit
d9eaceb277
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
set -v
|
|
||||||
echo
|
echo
|
||||||
echo "configuring settings common among OSes"
|
echo "configuring settings common among OSes"
|
||||||
sudo true
|
sudo true
|
||||||
|
@ -83,10 +82,11 @@ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
|
||||||
cd "$DIR/../"
|
cd "$DIR/../"
|
||||||
echo "getting rust sources..."
|
echo "getting rust sources..."
|
||||||
if [[ ! -d rust ]]; then
|
if [[ ! -d rust ]]; then
|
||||||
git clone https://github.com/rust-lang/rust.git
|
git clone https://github.com/rust-lang/rust.git --recursive
|
||||||
else
|
else
|
||||||
cd rust
|
cd rust
|
||||||
git pull
|
git pull
|
||||||
|
git submodule update --init --recursive
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cargo install -f rustfmt
|
cargo install -f rustfmt
|
||||||
|
|
Loading…
Reference in a new issue