From c5abd70e656c687556e8cee40e88a22fb1e78db5 Mon Sep 17 00:00:00 2001 From: Rushmore75 Date: Tue, 3 Feb 2026 14:35:52 -0700 Subject: [PATCH] assume program is installed --- wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper.sh b/wrapper.sh index ae43865..6a6e514 100755 --- a/wrapper.sh +++ b/wrapper.sh @@ -3,7 +3,7 @@ TMP=$(mktemp) # Put the output to fd 4 and put the TUI to 2, since pipes redirect 1 by default -cat /dev/stdin | ./target/release/select_option $TMP 1>&2 +cat /dev/stdin | select_option $TMP 1>&2 cat $TMP rm $TMP