diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-06 13:11:32 -0500 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-01-06 13:11:32 -0500 |
commit | 76638aae76117b3ac3352c499498570e8d9b5664 (patch) | |
tree | c1310f158e0880490a33c442663b237de8fbe269 /ext/installfiles | |
parent | 2edaf0588a55f32949404c2a94f4a479a5da6b8f (diff) | |
download | infinitytier-76638aae76117b3ac3352c499498570e8d9b5664.tar.gz infinitytier-76638aae76117b3ac3352c499498570e8d9b5664.zip |
Linux installer builds...
Diffstat (limited to 'ext/installfiles')
-rw-r--r-- | ext/installfiles/linux/install.tmpl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/installfiles/linux/install.tmpl.sh b/ext/installfiles/linux/install.tmpl.sh index 87359306..c32b2cab 100644 --- a/ext/installfiles/linux/install.tmpl.sh +++ b/ext/installfiles/linux/install.tmpl.sh @@ -45,9 +45,9 @@ fi echo 'Extracting files...' if [ $dryRun -gt 0 ]; then - echo ">> dry run: tail -c +$blobStart \"$scriptPath\" | bunzip2 -c | tar -xvop -C / -f -" + echo ">> dry run: tail -c +$blobStart \"$scriptPath\" | gunzip -c | tar -xvop -C / -f -" else - tail -c +$blobStart "$scriptPath" | bunzip2 -c | tar -xvop -C / -f - + tail -c +$blobStart "$scriptPath" | gunzip -c | tar -xvop -C / -f - fi if [ $dryRun -eq 0 -a ! -d "/var/lib/zerotier-one" ]; then |