diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-08-25 22:32:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-08-25 22:32:11 -0300 |
commit | 9c94047d8c4b21b3935ee20c67487ce0c6baf468 (patch) | |
tree | 0e5986e278a526f1771750c14c9028e576fdae00 /lib/httracker/functions | |
parent | cf48017df860bbce434f00b0f6d22dd81f2ccfd5 (diff) | |
download | httruta-9c94047d8c4b21b3935ee20c67487ce0c6baf468.tar.gz httruta-9c94047d8c4b21b3935ee20c67487ce0c6baf468.tar.bz2 |
Minor fix (2)
Diffstat (limited to 'lib/httracker/functions')
-rw-r--r-- | lib/httracker/functions | 2 |
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 } |