Skip to content

Commit

Permalink
chore Fix debian hint (#758)
Browse files Browse the repository at this point in the history
As far as I can tell `protobuf3-compiler` doesn't actually exist in `apt`.
  • Loading branch information
XAMPPRocky committed Nov 18, 2022
1 parent 7ea0789 commit fd1b450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prost-build/src/lib.rs
Expand Up @@ -1272,7 +1272,7 @@ pub fn protoc_from_env() -> PathBuf {
let os_specific_hint = if cfg!(target_os = "macos") {
"You could try running `brew install protobuf` or downloading it from https://github.com/protocolbuffers/protobuf/releases"
} else if cfg!(target_os = "linux") {
"If you're on debian, try `apt-get install protobuf3-compiler` or download it from https://github.com/protocolbuffers/protobuf/releases"
"If you're on debian, try `apt-get install protobuf-compiler` or download it from https://github.com/protocolbuffers/protobuf/releases"
} else {
"You can download it from https://github.com/protocolbuffers/protobuf/releases or from your package manager."
};
Expand Down

0 comments on commit fd1b450

Please sign in to comment.