Browse Source

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

pull/140/head
lumapu 2 years ago
parent
commit
caa84dc9c6
  1. 6
      tools/esp8266/scripts/auto_firmware_version.py

6
tools/esp8266/scripts/auto_firmware_version.py

@ -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)

Loading…
Cancel
Save