Initial commit

This commit is contained in:
2015-07-12 13:13:04 +05:30
commit 3ae4934a43
2 changed files with 56 additions and 0 deletions
Executable
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env bash
. $(dirname $(readlink -f $0))/installer_common;
export extractedName='node-v0.12.7-linux-x64';
export installationPath="$appDir/$extractedName";
downloadPack(){
wget -c 'https://nodejs.org/dist/v0.12.7/node-v0.12.7-linux-x64.tar.gz';
}
installPack(){
tar -xzvf 'node-v0.12.7-linux-x64.tar.gz';
cd "$extractedName";
find ./bin -type f -or -type l -executable > 'binaries.lst';
}
mainInstaller;