https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37038

Marcel de Rooy <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #168221|0                           |1
        is obsolete|                            |

--- Comment #9 from Marcel de Rooy <[email protected]> ---
Created attachment 168222
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=168222&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 <[email protected]>
[EDIT] Added the dev/null redirection to suppress warn in bin/sh.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to