mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
chore(ipc-service/linux): fix incorrect error message (#4976)
closes #4952 Forgot to use `format!` here
This commit is contained in:
@@ -196,7 +196,7 @@ pub(crate) fn run_ipc_service(
|
||||
pub fn firezone_group() -> Result<nix::unistd::Group> {
|
||||
let group = nix::unistd::Group::from_name(FIREZONE_GROUP)
|
||||
.context("can't get group by name")?
|
||||
.context("`{FIREZONE_GROUP}` group must exist on the system")?;
|
||||
.with_context(|| format!("`{FIREZONE_GROUP}` group must exist on the system"))?;
|
||||
Ok(group)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user