got a bit carried away with use of $here, broke 063, now fixed.

This commit is contained in:
fsgqa
2002-05-06 21:38:49 +00:00
parent f2379cce35
commit 517dc2b36c
+3 -3
View File
@@ -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
}