From: Silvio Rhatto Date: Mon, 19 Dec 2016 14:03:09 +0000 (-0200) Subject: Do not quote around EDITOR X-Git-Tag: 0.5.0~11 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=85c61ed6857676f4ca259ff73845f3d3c6dab7d2;p=keyringer.git Do not quote around EDITOR --- 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"