Re: [Mesa-dev] [PATCH 35/37] bin/bugzilla_mesa.sh: rework the looping method

2017-02-24 Thread Andreas Boll
2017-02-23 18:14 GMT+01:00 Emil Velikov : > From: Emil Velikov > > We don't use DRYRUN (and no others scripts have one) so just drop it. > > This allows us to rework the loop to the more commonly used "git | > while read foo; do ... done" > > That in itself gets rid of the only remaining bash

[Mesa-dev] [PATCH 35/37] bin/bugzilla_mesa.sh: rework the looping method

2017-02-23 Thread Emil Velikov
From: Emil Velikov We don't use DRYRUN (and no others scripts have one) so just drop it. This allows us to rework the loop to the more commonly used "git | while read foo; do ... done" That in itself gets rid of the only remaining bashism and we can toggle the shebang to /bin/sh. Signed-o