Files
installer-scripts/packages/self
T
2015-07-12 18:23:01 +05:30

20 lines
404 B
Bash
Executable File

#!/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;