From aeaefef8bf82f4fc63afb9911c7c18b9b57eb648 Mon Sep 17 00:00:00 2001 From: Gambhiro Date: Thu, 11 Feb 2016 18:53:44 +0000 Subject: [PATCH] fix regex --- package-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-linux.sh b/package-linux.sh index a3757f2..2810f93 100755 --- a/package-linux.sh +++ b/package-linux.sh @@ -72,7 +72,7 @@ while [ $# -gt 0 ]; do shift done -tarversion=$(tar --version | head -1 | sed -e 's/tar (GNU tar) \+\([0-9\.]\+\)$/\1/; s/[^0-9]//g; s/^\(.{3}\).*$/\1/;') +tarversion=$(tar --version | head -1 | sed -e 's/tar (GNU tar) \+\([0-9\.]\+\)$/\1/; s/[^0-9]//g; s/\(.\{3\}\).*/\1/;') if [[ "$tarversion" -lt "128" ]]; then echo "Tar >= 1.28 is required. Download the .deb from https://launchpad.net/ubuntu/+source/tar/ and install manually."