From d958f49de43724274fe725e780ddfc089d01eb99 Mon Sep 17 00:00:00 2001 From: "Lucas C. Villa Real" Date: Sun, 22 Jan 2017 20:15:50 -0200 Subject: Fixes installation of packages when the user passes a filesystem path rather than an URL to the RPM/DEB file. --- bin/ThirdPartyInstaller | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ThirdPartyInstaller b/bin/ThirdPartyInstaller index 7fd6b30..bcbf6d5 100755 --- a/bin/ThirdPartyInstaller +++ b/bin/ThirdPartyInstaller @@ -34,7 +34,7 @@ function fetch_package() { ${wget_cmd} -c "${inputfile}" -O "${goboTemp}/${filename}" || Die "Error downloading package." echo "${goboTemp}/${filename}" else - echo "$inputfile" + echo "$(readlink -f $inputfile)" fi } -- cgit v1.1