From cc649b4854fa0cb4e812733e508b9354fcd41efb Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Sun, 12 Jul 2015 17:38:58 +0530 Subject: [PATCH] update bin links --- installer_common | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/installer_common b/installer_common index c448c2a..a187159 100644 --- a/installer_common +++ b/installer_common @@ -33,6 +33,16 @@ mainInstaller(){ checkPaths; performDownloads; doInstall; + updateBinLinks; +} + +updateBinLinks(){ + cd $localBinDir; + for i in $(find "$appDir" -name 'binaries.lst'); do + for f in $(cat $i);do + ls -s $(dirname $i)/$f ./; + done; + done; }