System: replaced "which" by "whereis" as it's more likely to be installed by default

This commit is contained in:
Lemmy
2025-12-29 16:47:46 -05:00
parent de68fd6d21
commit 5bab582284
8 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ Singleton {
function checkCliphistAvailability() {
if (dependencyChecked)
return;
dependencyCheckProcess.command = ["which", "cliphist"];
dependencyCheckProcess.command = ["whereis", "cliphist"];
dependencyCheckProcess.running = true;
}