Merge branch 'fix-bootstrap' into 'master'

bootstrap.sh: Install system dependencies before installing Cargo packages

See merge request redox-os/redox!1275
This commit is contained in:
Jeremy Soller 2022-09-28 11:41:17 +00:00
commit fab7d9d3d9

View file

@ -577,8 +577,6 @@ done
banner
rustInstall
cargoInstall cargo-config 0.1.1
cargoInstall xargo 0.3.20
if [ "$update" == "true" ]; then
git pull upstream master
@ -619,6 +617,9 @@ else
fi
fi
cargoInstall cargo-config 0.1.1
cargoInstall xargo 0.3.20
if [ "$dependenciesonly" = false ]; then
boot
fi