From: Silvio Rhatto Date: Mon, 26 Aug 2013 01:32:11 +0000 (-0300) Subject: Minor fix (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9c94047d8c4b21b3935ee20c67487ce0c6baf468;p=httruta.git Minor fix (2) --- diff --git a/lib/httracker/functions b/lib/httracker/functions index 3e1c54f..6569f4b 100644 --- a/lib/httracker/functions +++ b/lib/httracker/functions @@ -143,7 +143,7 @@ function httracker_set_lockfile { # Remove lockfile function httracker_unset_lockfile { if [ ! -z "$LOCKFILE" ]; then - $rm -f $LOCKFILE || echo "Could not remove lockfile $LOCKFILE" + rm -f $LOCKFILE || echo "Could not remove lockfile $LOCKFILE" fi }