summaryrefslogtreecommitdiff
path: root/lb
diff options
context:
space:
mode:
Diffstat (limited to 'lb')
-rwxr-xr-xlb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lb b/lb
deleted file mode 100755
index 85fb4df..0000000
--- a/lb
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-# LibreTools wrapper
-# License: GPLv3
-
-source /etc/libretools.conf
-
-command=$1; shift
-
-[[ ! -x ~/l/libre"${command}" ]] && {
- error "Command not found"
- exit 1
-}
-
-~/l/libre${command} "$@"
-
-exit $?