aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/httracker/functions2
1 files changed, 1 insertions, 1 deletions
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
}