diff options
-rwxr-xr-x | release/scripts/compat1x-install.sh | 2 | ||||
-rwxr-xr-x | release/scripts/compat20-install.sh | 2 | ||||
-rwxr-xr-x | release/scripts/compat21-install.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/compat1x-install.sh b/release/scripts/compat1x-install.sh index 0361157..e0df742 100755 --- a/release/scripts/compat1x-install.sh +++ b/release/scripts/compat1x-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat1x.tgz -C / +cat compat1x.?? | tar --unlink -xpzf - -C / exit 0 diff --git a/release/scripts/compat20-install.sh b/release/scripts/compat20-install.sh index 9c84c14..0ad5ea66 100755 --- a/release/scripts/compat20-install.sh +++ b/release/scripts/compat20-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat20.tgz -C / +cat compat20.?? | tar --unlink -xpzf - -C / exit 0 diff --git a/release/scripts/compat21-install.sh b/release/scripts/compat21-install.sh index f6cc9cb..abf9bc2 100755 --- a/release/scripts/compat21-install.sh +++ b/release/scripts/compat21-install.sh @@ -4,5 +4,5 @@ if [ "`id -u`" != "0" ]; then echo "Sorry, this must be done as root." exit 1 fi -tar --unlink -xpzf compat21.tgz -C / +cat compat21.?? | tar --unlink -xpzf - -C / exit 0 |