summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2019-09-11 13:54:34 +0200
committerDirk Engling <erdgeist@erdgeist.org>2019-09-11 13:54:34 +0200
commit7790d80daf888a6882115608ce5e5eec6b305e26 (patch)
tree6fba0e7a08a6b7e33adfa76845dc0caaf04ad98c
parent998261d1d08bb5d05610f6b05fa84697f5b27b44 (diff)
Quoting PLUGIN variable gave plain newlines in list, breaking plug insHEADmaster
-rwxr-xr-xminimunin2
1 files changed, 1 insertions, 1 deletions
diff --git a/minimunin b/minimunin
index 557e0dc..70d8b69 100755
--- a/minimunin
+++ b/minimunin
@@ -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"