fix: replace sh with CMD_SH (#12173)

Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
fufesou
2025-06-26 15:54:16 +08:00
committed by GitHub
parent 58fd2d3ccd
commit fd4e0146e1
3 changed files with 9 additions and 4 deletions

View File

@@ -427,7 +427,8 @@ impl ClipboardContext {
// It's not correct in the server process.
#[cfg(target_os = "linux")]
let is_kde_x11 = {
let is_kde = std::process::Command::new("sh")
use hbb_common::platform::linux::CMD_SH;
let is_kde = std::process::Command::new(CMD_SH.as_str())
.arg("-c")
.arg("ps -e | grep -E kded[0-9]+ | grep -v grep")
.stdout(std::process::Stdio::piped())