* fix: compile possible for non repository versions (if project was download as zip)

This commit is contained in:
lumapu 2022-08-11 09:16:02 +02:00
parent 6276957b22
commit caa84dc9c6

View file

@ -16,7 +16,11 @@ if missing_pkgs:
from dulwich import porcelain
def get_firmware_specifier_build_flag():
build_version = porcelain.describe('../../') # refers to the repository root dir
try:
build_version = porcelain.describe('../../') # refers to the repository root dir
except:
build_version = "g0000000"
build_flag = "-D AUTO_GIT_HASH=\\\"" + build_version + "\\\""
print ("Firmware Revision: " + build_version)
return (build_flag)