From: fsgqa Date: Mon, 6 May 2002 21:38:49 +0000 (+0000) Subject: got a bit carried away with use of $here, broke 063, now fixed. X-Git-Tag: v1.1.0~1123 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=517dc2b36cb1a61e5487edb73bad6296bc9307f6;p=xfstests-dev.git got a bit carried away with use of $here, broke 063, now fixed. --- diff --git a/common.dump b/common.dump index 1b957808..a2f79e5a 100644 --- a/common.dump +++ b/common.dump @@ -1193,13 +1193,13 @@ _diff_compare_eas() echo "Comparing dump directory with restore directory" echo "Looking at the extended attributes (EAs)" echo "EAs on dump" - _get_eas_on_path $dump_dir | tee $here/$seq.ea1 | _dir_filter + _get_eas_on_path $dump_dir | tee $seq.ea1 | _dir_filter echo "EAs on restore" _get_eas_on_path $restore_dir/$dump_sdir \ | sed -e "s#$restore_sdir\/##" \ - | tee $here/$seq.ea2 \ + | tee $seq.ea2 \ | _dir_filter - diff -s $here/$seq.ea1 $here/$seq.ea2 + diff -s $seq.ea1 $seq.ea2 }