https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40901 --- Comment #27 from Mason James <mtj@kohaaloha.com> ---
hi Jake, i spotted a syntax error on this patch
check out shellcheck tool (if you haven't seen it before) # apt install shellcheck # shellcheck debian/koha-systemd.postinst In debian/koha-systemd.postinst line 4: case "$1" in ^-- SC1009: The mentioned syntax error was in this case expression. In debian/koha-systemd.postinst line 11: if [ -n "$2" ]; then ^-- SC1073: Couldn't parse this case item. Fix to allow more checks. ^-- SC1072: Expected ) to open a new case item. Fix any mentioned problems and try again. ^-- SC1085: Did you forget to move the ;; after extending this case item? For more information: https://www.shellcheck.net/wiki/SC1085 -- Did you forget to move the ;; aft... https://www.shellcheck.net/wiki/SC1072 -- Expected ) to open a new case ite... https://www.shellcheck.net/wiki/SC1073 -- Couldn't parse this case item. Fi... -- You are receiving this mail because: You are watching all bug changes.