From f1c6fe5f4d525d1741cc72cd65d83944849ee34c Mon Sep 17 00:00:00 2001 From: "Harish.K" Date: Sun, 12 Jul 2015 16:35:16 +0530 Subject: [PATCH] Self installation script --- self | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 self diff --git a/self b/self new file mode 100755 index 0000000..2446be3 --- /dev/null +++ b/self @@ -0,0 +1,19 @@ +#!/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;