Fix prebuild crash if can't find git binary (such as when running under Android Studio)

This commit is contained in:
Brad Davis 2019-02-15 14:30:54 -08:00
parent 51884155ee
commit f896623404

View file

@ -58,6 +58,9 @@ logging.setLoggerClass(TrackableLogger)
logger = logging.getLogger('prebuild')
def headSha():
if shutil.which('git') is None:
logger.warn("Unable to find git executable, can't caclulate commit ID")
return '0xDEADBEEF'
repo_dir = os.path.dirname(os.path.abspath(__file__))
git = subprocess.Popen(
'git rev-parse --short HEAD',
@ -67,7 +70,7 @@ def headSha():
stdout, _ = git.communicate()
sha = stdout.split('\n')[0]
if not sha:
raise RuntimeError("couldn't find git sha")
raise RuntimeError("couldn't find git sha for repository {}".format(repo_dir))
return sha
@contextmanager