fix(cli): use .service suffix
Doesn't really matter, as systemd aliases <service-name> to <service-name>.service anyway. But it's good practice to use the full unit name.
This commit is contained in:
parent
3b48a9ac9c
commit
eacf34d337
|
@ -27,7 +27,7 @@ use thiserror::Error;
|
||||||
|
|
||||||
use crate::{error_eprintln, info_println, warn_eprintln};
|
use crate::{error_eprintln, info_println, warn_eprintln};
|
||||||
|
|
||||||
const LINUX_SERVICE_NAME: &str = "espanso";
|
const LINUX_SERVICE_NAME: &str = "espanso.service";
|
||||||
const LINUX_SERVICE_CONTENT: &str = include_str!("../../res/linux/systemd.service");
|
const LINUX_SERVICE_CONTENT: &str = include_str!("../../res/linux/systemd.service");
|
||||||
#[allow(clippy::transmute_bytes_to_str)]
|
#[allow(clippy::transmute_bytes_to_str)]
|
||||||
const LINUX_SERVICE_FILENAME: &str = formatcp!("{}.service", LINUX_SERVICE_NAME);
|
const LINUX_SERVICE_FILENAME: &str = formatcp!("{}.service", LINUX_SERVICE_NAME);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user