mirror of
https://github.com/harish2704/installer-scripts.git
synced 2026-09-10 06:11:08 +00:00
20 lines
434 B
Bash
Executable File
20 lines
434 B
Bash
Executable File
#!/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;
|