Self installation script

This commit is contained in:
2015-07-12 16:35:16 +05:30
parent 3ae4934a43
commit f1c6fe5f4d
Executable
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/env bash
. $(dirname $(readlink -f $0))/installer_common;
export extractedName='installer-scripts-master';
export installationPath="$appDir/$extractedName";
downloadPack(){
wget -c 'https://github.com/harish2704/installer-scripts/archive/master.zip';
}
installPack(){
unzip 'master.zip'
cd "$extractedName";
# find ./ -type f -or -type l -executable > 'binaries.lst';
touch 'binaries.lst';
}
mainInstaller;