tools/changelog-helper.sh: remove [[ bashism

This commit is contained in:
Alexander Krotov 2019-01-07 09:17:21 +03:00
parent ea2e25fd93
commit a92d6fa5be

View file

@ -8,7 +8,7 @@ files=`git ls-tree -r master --name-only`
for x in $files
do
commits=`git log -n1 $lastmod..HEAD $x`
if [[ ! -z $commits ]]
if [ ! -z "$commits" ]
then
if echo $x | grep -q "src\/.*\.hs"
then