This commit is contained in:
2015-07-12 18:23:01 +05:30
parent d9fe5fdcfa
commit 8f62fb263f
4 changed files with 43 additions and 9 deletions
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
export appName='installer-scripts';
export installationPath="$appDir/$appName";
downloadPack(){
wget -c 'https://github.com/harish2704/installer-scripts/archive/master.zip';
}
installPack(){
unzip 'master.zip'
mv 'installer-scripts-master' "$appName";
cd "$appName";
# find ./ -type f -or -type l -executable > 'binaries.lst';
touch 'binaries.lst';
}
mainInstaller;