Re: svn commit: r1841675 - /ofbiz/tools/verify-ofbiz-release.sh

2018-09-22 Thread Michael Brohl
Hi Mathieu, thanks for the hint! There is no portability requirement, I once wrote this script to ease the release checks and shared it with the community. I changed the code so that there is no need for exporting the setting anymore. Regards, Michael Am 22.09.18 um 14:41 schrieb Mathie

Re: svn commit: r1841675 - /ofbiz/tools/verify-ofbiz-release.sh

2018-09-22 Thread Mathieu Lirzin
Hello Michael, mbr...@apache.org writes: > # use english gpg output > -LC_MESSAGES=en_EN.UTF-8 > +export LC_MESSAGES=en_EN.UTF-8 This syntax is a bashism. I don't know the portability requirements for this script, but I would recommend using this syntax instead: LC_MESSAGES=en_EN.UTF-8 ex