From 5902bd4c76215adc36f1b90ca3949e4fe2a32f75 Mon Sep 17 00:00:00 2001 From: David Disseldorp Date: Fri, 22 Dec 2006 05:07:41 +0000 Subject: [PATCH] fix not_run condition Merge of master-melb:xfs-cmds:27812a by kenmcd. fix not_run condition --- 148 | 2 +- 149 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/148 b/148 index b7a2041b..928deca0 100755 --- a/148 +++ b/148 @@ -32,7 +32,7 @@ trap "_cleanup; exit \$status" 0 1 2 3 15 . ./common.filter . ./common.repair -[ -x $XFS_PARALLEL_REPAIR64_PROG ] || _notrun "parallel repair binary xfs_prepair64 is not installed" +[ -z $XFS_PARALLEL_REPAIR64_PROG ] && _notrun "parallel repair binary xfs_prepair64 is not installed" # force use of parallel repair export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR64_PROG diff --git a/149 b/149 index 3121c1fc..5ac913c7 100755 --- a/149 +++ b/149 @@ -25,7 +25,7 @@ rm -f $seq.full . ./common.repair . ./common.filter -[ -x $XFS_PARALLEL_REPAIR_PROG ] || _notrun "parallel repair binary xfs_prepair is not installed" +[ -z $XFS_PARALLEL_REPAIR_PROG ] && _notrun "parallel repair binary xfs_prepair is not installed" # force use of parallel repair export XFS_REPAIR_PROG=$XFS_PARALLEL_REPAIR_PROG -- 2.47.3