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