-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#!/bin/bash | ||
curl https://sh.rustup.rs > rust.sh # Download Rust installation | ||
chmod +x rust.sh | ||
./rust.sh -y # Runs the installation file | ||
rm rust.sh # Removes the installation file | ||
sudo apt-get install pkg-config libssl-dev # Installs some dependencies | ||
cargo build # Compiles the code | ||
mv target/debug/RBust rbust # Moves the executable to RBust directory | ||
mv target/debug/RBust rbust # Moves the executable to RBust directory |