From 84c1e73f4bd14771fbeeb392fc01e2cd811bc1b0 Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Thu, 16 Jul 2015 13:00:52 +0530 Subject: [PATCH] Fix: should be able to run from any directory --- bin/installer-script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/installer-script.sh b/bin/installer-script.sh index 5be5696..5336eed 100755 --- a/bin/installer-script.sh +++ b/bin/installer-script.sh @@ -12,7 +12,7 @@ appRoot=$(readlink -f $(dirname $(readlink -f $0))/.. ); . "$appRoot/lib/installer_common"; printPackages(){ - cd $appDir/installer-scripts/packages; + cd "$appRoot/packages"; ls; }