-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make rustup noninteractive for codespace setup, update docs (fixes #205)
- Loading branch information
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#!/bin/bash | ||
|
||
#fix the uuidgen command not found error | ||
sudo apt update | ||
sudo apt-get install uuid-runtime | ||
sudo apt upgrade | ||
sudo apt install -y uuid-runtime gcc-multilib | ||
|
||
#install | ||
git submodule update --init | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --target wasm32-unknown-unknown,i686-unknown-linux-gnu | ||
source "$HOME/.cargo/env" # to import rustup in current shell | ||
make all |