Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove some more rust-version leftovers #96

Merged
merged 1 commit into from
Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,6 @@ To upgrade the service to the latest git version, follow these steps:
cd ~ff-node-monitor/src/
git pull
sudo rm target/release/ff-node-monitor
sudo -u ff-node-monitor ~ff-node-monitor/.cargo/bin/rustup default $(cat rust-version)
sudo -u ff-node-monitor ~ff-node-monitor/.cargo/bin/cargo build --release
sudo systemctl restart ff-node-monitor
```
Expand Down
2 changes: 1 addition & 1 deletion vagrant/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ test -d src || $ffsudo git clone https://github.com/freifunk-saar/ff-node-monito

: "#### ff-node-monitor is written in Rust using Rocket, which means it needs a nightly version of Rust:"
if ! test -f $HOME_PATH/.cargo/bin/rustc; then
curl https://sh.rustup.rs -sSf | $ffsudo sh -s -- -y --default-toolchain $(cat "$HOME_PATH/src/rust-version")
curl https://sh.rustup.rs -sSf | $ffsudo sh -s -- -y
fi
cd "$HOME_PATH/src"
$ffsudo "$HOME_PATH/.cargo/bin/cargo" build --release
Expand Down