From 1fbfc2f9216c26e4b6c2294a71c2d59b963da090 Mon Sep 17 00:00:00 2001 From: Brendan Kidwell Date: Mon, 11 Jul 2016 23:36:04 -0400 Subject: [PATCH] Removing accidental hard-coded platform name from 'ar' command to extract deb archives. --- mk-portable-rdiff-backup.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mk-portable-rdiff-backup.sh b/mk-portable-rdiff-backup.sh index 4e465f1..5277ba0 100755 --- a/mk-portable-rdiff-backup.sh +++ b/mk-portable-rdiff-backup.sh @@ -7,8 +7,8 @@ # License: GPLv3 echo This script will take the following files in its folder: -echo " librsync1_*_amd64.deb" -echo " rdiff-backup_*_amd64.deb" +echo " librsync1_*.deb" +echo " rdiff-backup_*.deb" echo and build a portable copy of \'rdiff-backup\' for use on DreamHost. read -p "Press [Enter] key to continue..." @@ -22,8 +22,8 @@ mkdir build echo Extracting librsync and rdiff-backup... cd build -ar p ../librsync1_*_amd64.deb data.tar.gz | tar zx -ar p ../rdiff-backup_*_amd64.deb data.tar.gz | tar zx +ar p ../librsync1_*.deb data.tar.gz | tar zx +ar p ../rdiff-backup_*.deb data.tar.gz | tar zx echo Building app folder... -- 2.45.2