aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-08-25 22:32:11 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-08-25 22:32:11 -0300
commit9c94047d8c4b21b3935ee20c67487ce0c6baf468 (patch)
tree0e5986e278a526f1771750c14c9028e576fdae00 /lib
parentcf48017df860bbce434f00b0f6d22dd81f2ccfd5 (diff)
downloadhttruta-9c94047d8c4b21b3935ee20c67487ce0c6baf468.tar.gz
httruta-9c94047d8c4b21b3935ee20c67487ce0c6baf468.tar.bz2
Minor fix (2)
Diffstat (limited to 'lib')
-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
}