Skip to content

Commit

Permalink
Merge pull request graalvm#38 from christianwimmer/master
Browse files Browse the repository at this point in the history
Make git revision checking more resilient
  • Loading branch information
dougxc committed Feb 10, 2016
2 parents 7c6f7d6 + 8256a49 commit 1c83c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3673,7 +3673,7 @@ def exists(self, vcdir, rev):
out = subprocess.check_output(['git', 'show', '--format=oneline', '-s', rev], cwd=vcdir)
return out.strip().startswith(rev)
except subprocess.CalledProcessError:
abort('exists failed')
return False



Expand Down

0 comments on commit 1c83c13

Please sign in to comment.