28 Jun
2024
28 Jun
'24
8:33 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37038 --- Comment #6 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Created attachment 168221 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=168221&action=edit Bug 37038: (QA follow-up) Replace \> by -gt Note that -gt is the bash integer comparison and > is the lexical one: $ if [ '1' \> '09' ]; then echo true; fi true $ if [ '1' -gt '09' ]; then echo true; fi Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> -- You are receiving this mail because: You are watching all bug changes.