aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-12-19 12:03:09 -0200
committerSilvio Rhatto <rhatto@riseup.net>2016-12-19 12:03:09 -0200
commit85c61ed6857676f4ca259ff73845f3d3c6dab7d2 (patch)
tree20790b704971cd2ed7c83a461b9b00deb2d032b2 /lib
parent2a702bb52842229d8d3e1ad010c92ad810feee15 (diff)
downloadkeyringer-85c61ed6857676f4ca259ff73845f3d3c6dab7d2.tar.gz
keyringer-85c61ed6857676f4ca259ff73845f3d3c6dab7d2.tar.bz2
Do not quote around EDITOR
Diffstat (limited to 'lib')
-rwxr-xr-xlib/keyringer/actions/preferences2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyringer/actions/preferences b/lib/keyringer/actions/preferences
index 6e36ef4..ffabc4c 100755
--- a/lib/keyringer/actions/preferences
+++ b/lib/keyringer/actions/preferences
@@ -30,7 +30,7 @@ fi
if [ "$COMMAND" == "ls" ]; then
cat "$PREFERENCES"
elif [ "$COMMAND" == "edit" ]; then
- "$EDITOR" "$PREFERENCES"
+ $EDITOR "$PREFERENCES"
elif [ "$COMMAND" == "add" ]; then
shift 2
[[ -n $* ]] && echo $* >> "$PREFERENCES"