summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@imgtec.com>2017-08-02 14:57:52 +0100
committerEric Engestrom <eric.engestrom@imgtec.com>2017-08-02 14:57:54 +0100
commitaab06494873bd9f46e8db960ea1f889701d43400 (patch)
treee9a5fe0d0e504cd14628198e1a058c57862b58eb /bin
parent44828e99f9b5f04f8e2f19dd671de4d67ee1f595 (diff)
git_sha1_gen: catch any error the same way
Acked-by: Jose Fonseca <jfonseca@vmware.com> Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/git_sha1_gen.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/git_sha1_gen.py b/bin/git_sha1_gen.py
index fe30084a4f8..e26d3a3f764 100755
--- a/bin/git_sha1_gen.py
+++ b/bin/git_sha1_gen.py
@@ -13,11 +13,8 @@ try:
'--short=10',
'HEAD',
], stderr=open(os.devnull, 'w'))
-except subprocess.CalledProcessError as e:
- # don't print anything if git fails
- pass
-except OSError as eos:
- # don't fail on inaccessible files when sandboxed
+except:
+ # don't print anything if it fails
pass
else:
sys.stdout.write('#define MESA_GIT_SHA1 "git-%s"\n' % git_sha1.rstrip())