summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <github@bigly.dog>2024-03-23 11:45:18 -0700
committerroot <github@bigly.dog>2024-03-23 11:45:51 -0700
commited27de56c4bfc1cc18478e6b91e80948b75184a3 (patch)
tree1d81b247f9b10f0d4b840b5bf93abb2d2924193f
parent3c17cc5651d28477a44904a1d180937a2a3bde50 (diff)
fix typov0.4.27
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/fzf.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4b844c3..d98185f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -467,7 +467,7 @@ dependencies = [
[[package]]
name = "sad"
-version = "0.4.26"
+version = "0.4.27"
dependencies = [
"aho-corasick",
"ansi_term",
diff --git a/Cargo.toml b/Cargo.toml
index 8d94a0c..c501125 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@ authors = ["git@bigly.dog"]
description = "Space Age seD | https://github.com/ms-jpq/sad"
edition = "2021"
name = "sad"
-version = "0.4.26"
+version = "0.4.27"
[dependencies]
diff --git a/src/fzf.rs b/src/fzf.rs
index 2a6c08d..7004f28 100644
--- a/src/fzf.rs
+++ b/src/fzf.rs
@@ -76,7 +76,7 @@ pub fn stream_fzf_proc(
|path| format!("{}", path.display()),
),
);
- fzf_env.insert("LC_ALL".to_owned(), "C-UTF8".to_owned());
+ fzf_env.insert("LC_ALL".to_owned(), "C.UTF-8".to_owned());
let cmd = SubprocCommand {
prog: bin,