This commit is contained in:
2015-07-12 18:31:25 +05:30
parent 8f62fb263f
commit a8cd3dd705
4 changed files with 19 additions and 18 deletions
+6 -8
View File
@@ -29,13 +29,6 @@ doInstall(){
mv "$appName" "$installationPath";
}
mainInstaller(){
checkPaths;
performDownloads;
doInstall;
updateBinLinks;
}
updateBinLinks(){
cd $localBinDir;
for i in $(find "$appDir" -name 'binaries.lst'); do
@@ -45,4 +38,9 @@ updateBinLinks(){
done;
}
mainInstaller(){
checkPaths;
performDownloads;
doInstall;
updateBinLinks;
}