mirror of
https://github.com/harish2704/installer-scripts.git
synced 2026-09-10 06:11:08 +00:00
15 lines
365 B
Plaintext
Executable File
15 lines
365 B
Plaintext
Executable File
export appName='installer-scripts';
|
|
export installationPath="$appDir/$appName";
|
|
|
|
downloadPack(){
|
|
wget 'https://github.com/harish2704/installer-scripts/archive/master.zip' -O "${appName}.zip";
|
|
}
|
|
|
|
installPack(){
|
|
unzip "${appName}.zip"
|
|
mv 'installer-scripts-master' "$appName";
|
|
cd "$appName";
|
|
find ./bin -type f -or -type l -executable > 'binaries.lst';
|
|
}
|
|
|