From ebcccd61898e226994ce312360f6c2f03c1cec9a Mon Sep 17 00:00:00 2001 From: pyro Date: Wed, 13 May 2026 12:55:11 -0500 Subject: [PATCH] fixed install script. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index af47317..e822c1b 100755 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ echo "compiling ferrisfind..." if cargo build --release; then echo "ferrisfind compiled successfully!" - if ldd ./target/release/hyphae_cmd | grep libtika | grep "not found"; then + if ldd ./target/release/ferrisfind | grep libtika | grep "not found"; then echo "libtika not found in current sytem, copying from the build directory." echo "this will need sudo privileges..." if sudo cp ./target/release/build/extractous-*/out/libs/libtika_native.so /usr/lib64/; then