Update self install script

This commit is contained in:
2015-07-12 18:47:44 +05:30
parent a8cd3dd705
commit 7ee0a67af7
+3 -4
View File
@@ -2,14 +2,13 @@ export appName='installer-scripts';
export installationPath="$appDir/$appName"; export installationPath="$appDir/$appName";
downloadPack(){ 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(){ installPack(){
unzip 'master.zip' unzip "${appName}.zip"
mv 'installer-scripts-master' "$appName"; mv 'installer-scripts-master' "$appName";
cd "$appName"; cd "$appName";
# find ./ -type f -or -type l -executable > 'binaries.lst'; find ./bin -type f -or -type l -executable > 'binaries.lst';
touch 'binaries.lst';
} }