diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2019-09-11 13:54:34 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2019-09-11 13:54:34 +0200 |
commit | 7790d80daf888a6882115608ce5e5eec6b305e26 (patch) | |
tree | 6fba0e7a08a6b7e33adfa76845dc0caaf04ad98c | |
parent | 998261d1d08bb5d05610f6b05fa84697f5b27b44 (diff) |
Quoting PLUGIN variable gave plain newlines in list, breaking plug ins
-rwxr-xr-x | minimunin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ main() { | |||
31 | # dispatch commands | 31 | # dispatch commands |
32 | case ${command} in | 32 | case ${command} in |
33 | list) | 33 | list) |
34 | printf "%s " "${BUILTIN}" "${PLUGINS}"; printf '\n' | 34 | printf "%s " "${BUILTIN}" ${PLUGINS}; printf '\n' |
35 | ;; | 35 | ;; |
36 | fetch) | 36 | fetch) |
37 | print_fetch ${arg}; printf ".\n" | 37 | print_fetch ${arg}; printf ".\n" |