diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2017-02-22 19:58:54 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2017-03-10 14:12:48 +0000 |
commit | 0e94217999633b1baf63b1236134e4c32436153e (patch) | |
tree | 487fb0e825e178ccca05d246ef40d72a865a5408 /bin | |
parent | 3aa5f51c2706023ff707d1e28410f8d9e67e6c6c (diff) |
bin/shortlog_mesa.sh: remove the final bashism
Remove the typeset built-in and toggle to /bin/sh
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Andreas Boll <andreas.boll.dev@gmail.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/shortlog_mesa.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/shortlog_mesa.sh b/bin/shortlog_mesa.sh index 2ba0815de7..c9a4297236 100755 --- a/bin/shortlog_mesa.sh +++ b/bin/shortlog_mesa.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # This script is used to generate the list of changes that # appears in the release notes files, with HTML formatting. @@ -10,7 +10,7 @@ # $ bin/shortlog_mesa.sh mesa-9.0.2..mesa-9.0.3 | tee changes -typeset -i in_log=0 +in_log=0 git shortlog $* | while read l do |