Checking that xargo isn't already installed before trying to install it - should prevent the bootstrap script erroring out in an ugly way.
This commit is contained in:
parent
51cd2d36d7
commit
8017fb06a1
|
@ -461,7 +461,11 @@ boot()
|
||||||
echo "Cloning github repo..."
|
echo "Cloning github repo..."
|
||||||
git clone https://github.com/redox-os/redox.git --origin upstream --recursive
|
git clone https://github.com/redox-os/redox.git --origin upstream --recursive
|
||||||
rustInstall
|
rustInstall
|
||||||
cargo install xargo
|
if [[ "`cargo install --list`" != *"xargo"* ]]; then
|
||||||
|
cargo install xargo
|
||||||
|
else
|
||||||
|
echo "You have xargo installed already!"
|
||||||
|
fi
|
||||||
echo "Cleaning up..."
|
echo "Cleaning up..."
|
||||||
rm bootstrap.sh
|
rm bootstrap.sh
|
||||||
echo
|
echo
|
||||||
|
|
Loading…
Reference in a new issue