From 5a37beb434e6dba9c2002c620e4e286ffbc4879a Mon Sep 17 00:00:00 2001 From: pyro Date: Tue, 1 Sep 2026 16:35:20 -0500 Subject: [PATCH] updated install script to actually work. --- install.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/install.sh b/install.sh index e822c1b..f88c2d2 100755 --- a/install.sh +++ b/install.sh @@ -3,16 +3,6 @@ echo "compiling ferrisfind..." if cargo build --release; then echo "ferrisfind compiled successfully!" - 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 - echo "library copied successfully!" - else - echo "error copying libary!" - exit - fi - fi echo "copying binary to your path..." echo "this will require sudo privileges" if sudo cp ./target/release/ferrisfind /usr/bin; then