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.
14 lines
365 B
14 lines
365 B
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';
|
|
}
|
|
|
|
|