From c45085433a11f2b0ac0aa23ec6fe1bff49f9e62d Mon Sep 17 00:00:00 2001 From: Ivan Alejandro Marugan Date: Tue, 24 Oct 2017 21:46:39 +0200 Subject: [PATCH] Fix ivy.jar directory --- filebot-compiler.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filebot-compiler.sh b/filebot-compiler.sh index 65dfd96..b467337 100755 --- a/filebot-compiler.sh +++ b/filebot-compiler.sh @@ -82,8 +82,8 @@ install_packages() { mkdir -p "${APACHE_IVY_SOURCE}" echo "[${OK}OK${NC}] Download new changes in Apache Ivy repository..." wget -qP "${APACHE_IVY_SOURCE}" "${APACHE_IVY_FILE}" - ant -S jar -buildfile "${APACHE_IVY_SOURCE}" - mv "${APACHE_IVY_SOURCE}/ivy.jar" "/usr/share/ant/lib/" + ant -S -buildfile "${APACHE_IVY_SOURCE}" + mv "${APACHE_IVY_SOURCE}/ivy/ivy.jar" "/usr/share/ant/lib/" fi }