diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-12-19 12:03:09 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-12-19 12:03:09 -0200 |
commit | 85c61ed6857676f4ca259ff73845f3d3c6dab7d2 (patch) | |
tree | 20790b704971cd2ed7c83a461b9b00deb2d032b2 | |
parent | 2a702bb52842229d8d3e1ad010c92ad810feee15 (diff) | |
download | keyringer-85c61ed6857676f4ca259ff73845f3d3c6dab7d2.tar.gz keyringer-85c61ed6857676f4ca259ff73845f3d3c6dab7d2.tar.bz2 |
Do not quote around EDITOR
-rwxr-xr-x | lib/keyringer/actions/preferences | 2 |
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" |