mirror of
https://github.com/harish2704/installer-scripts.git
synced 2026-09-10 06:11:08 +00:00
Refactor
This commit is contained in:
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
export appName='installer-scripts';
|
||||
export installationPath="$appDir/$appName";
|
||||
|
||||
downloadPack(){
|
||||
wget -c 'https://github.com/harish2704/installer-scripts/archive/master.zip';
|
||||
}
|
||||
|
||||
installPack(){
|
||||
unzip 'master.zip'
|
||||
mv 'installer-scripts-master' "$appName";
|
||||
cd "$appName";
|
||||
# find ./ -type f -or -type l -executable > 'binaries.lst';
|
||||
touch 'binaries.lst';
|
||||
}
|
||||
|
||||
|
||||
mainInstaller;
|
||||
Reference in New Issue
Block a user