From 7ee0a67af7b195589bb7f5d6bc92de05e0f3f3ef Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Sun, 12 Jul 2015 18:47:44 +0530 Subject: [PATCH] Update self install script --- packages/self | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/self b/packages/self index e57c77e..7f73642 100755 --- a/packages/self +++ b/packages/self @@ -2,14 +2,13 @@ export appName='installer-scripts'; export installationPath="$appDir/$appName"; downloadPack(){ - wget 'https://github.com/harish2704/installer-scripts/archive/master.zip'; + wget 'https://github.com/harish2704/installer-scripts/archive/master.zip' -O "${appName}.zip"; } installPack(){ - unzip 'master.zip' + unzip "${appName}.zip" mv 'installer-scripts-master' "$appName"; cd "$appName"; - # find ./ -type f -or -type l -executable > 'binaries.lst'; - touch 'binaries.lst'; + find ./bin -type f -or -type l -executable > 'binaries.lst'; }