Fix error in 'clean_up' function.

This commit is contained in:
Christoph 2017-06-28 02:12:25 +02:00
parent 1a39e701ad
commit fb75b474ba

View File

@ -30,7 +30,7 @@ LOCK_DIR=`mktemp -d`
clean_up() {
# Perform program exit housekeeping
rm rf $LOCK_DIR
rm -rf $LOCK_DIR
exit $1
}