Linux installer builds...

This commit is contained in:
Adam Ierymenko 2014-01-06 13:11:32 -05:00
commit 76638aae76
3 changed files with 6 additions and 3 deletions

View file

@ -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