Stop hard-coding an incorrect path to rm(1).

MFC after:	1 week
This commit is contained in:
Mark Johnston 2015-02-28 23:09:01 +00:00
parent ce6682d990
commit 2c4c1a261e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279414
5 changed files with 5 additions and 5 deletions

View File

@ -102,5 +102,5 @@ if [ $? -ne 0 ]; then
fi
cd /
/usr/bin/rm -rf $DIR
rm -rf $DIR
exit 0

View File

@ -55,5 +55,5 @@ if [ $? -eq 0 ]; then
fi
cd /
/usr/bin/rm -rf $DIR
rm -rf $DIR
exit 0

View File

@ -123,6 +123,6 @@ else
fi
cd /
/usr/bin/rm -rf $DIR
rm -rf $DIR
exit $status

View File

@ -119,6 +119,6 @@ fi
kill $background
cd /
/usr/bin/rm -rf $DIR
rm -rf $DIR
exit $status

View File

@ -110,6 +110,6 @@ grep D_PDESC_INVAL test.out 2> /dev/null 1>&2
status=$?
cd /
/usr/bin/rm -rf $DIR
rm -rf $DIR
exit $status