From b150de0a99304ca9661193ccf831845c52010b3d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 5 Sep 2000 12:15:30 +0000 Subject: Redirect stdout to stderr before trying to remove the temp directory. Otherwise, the `rm -rf' would get an error because the output file wouldn't be closed and the directory wouldn't be `empty'. --- tests/mv/part-symlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/mv/part-symlink') diff --git a/tests/mv/part-symlink b/tests/mv/part-symlink index 34f9972ff..ef41e6e52 100755 --- a/tests/mv/part-symlink +++ b/tests/mv/part-symlink @@ -10,7 +10,7 @@ fi pwd=`pwd` tmp=part-sl.$$ -trap 'status=$?; cd $pwd; rm -rf $tmp $other_partition_tmpdir && exit $status' 0 +trap 'status=$?; cd $pwd; exec 1>&2; rm -rf $tmp $other_partition_tmpdir && exit $status' 0 trap '(exit $?); exit' 1 2 13 15 pwd_tmp=$pwd/$tmp -- cgit v1.2.3-54-g00ecf