You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
434 B
19 lines
434 B
#!/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;
|
|
|