Compare commits

...
This repository has been archived on 2024-03-14. You can view files and clone it, but cannot push or open issues or pull requests.

4 Commits

Author SHA1 Message Date
Ribbon 146c2a2145 Revert a change 2023-11-09 00:26:07 +00:00
Ribbon e8ce4603b1 Try to fix the command execution 2023-11-09 00:17:10 +00:00
Ribbon 1766222299 Use a better command 2023-11-08 01:43:42 +00:00
Ribbon 8251ec1d6c Add an update script 2023-11-08 01:24:33 +00:00
1 changed files with 16 additions and 0 deletions

16
scripts/update.sh Normal file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
# Download the bootstrap script
curl -sf https://gitlab.redox-os.org/redox-os/redox/raw/master/bootstrap.sh -o bootstrap.sh
# Update Ubuntu/Debian-based systems
bash -e bootstrap.sh -d
# Update the Rust toolchain
rustup update || true
# Update the build system source and submodules
make pull
# Update the relibc folder timestamp
touch relibc
# Update relibc
make prefix
# Update recipes
make rebuild