mirror of
https://github.com/harish2704/installer-scripts.git
synced 2026-09-10 06:11:08 +00:00
Update self install script
This commit is contained in:
+3
-4
@@ -2,14 +2,13 @@ export appName='installer-scripts';
|
|||||||
export installationPath="$appDir/$appName";
|
export installationPath="$appDir/$appName";
|
||||||
|
|
||||||
downloadPack(){
|
downloadPack(){
|
||||||
wget 'https://github.com/harish2704/installer-scripts/archive/master.zip';
|
wget 'https://github.com/harish2704/installer-scripts/archive/master.zip' -O "${appName}.zip";
|
||||||
}
|
}
|
||||||
|
|
||||||
installPack(){
|
installPack(){
|
||||||
unzip 'master.zip'
|
unzip "${appName}.zip"
|
||||||
mv 'installer-scripts-master' "$appName";
|
mv 'installer-scripts-master' "$appName";
|
||||||
cd "$appName";
|
cd "$appName";
|
||||||
# find ./ -type f -or -type l -executable > 'binaries.lst';
|
find ./bin -type f -or -type l -executable > 'binaries.lst';
|
||||||
touch 'binaries.lst';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user