We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1310c0 commit 7f78278Copy full SHA for 7f78278
tools/makecorever.py
@@ -31,10 +31,12 @@ def git(*args):
31
32
text = ""
33
34
+ git_ver = "00000000"
35
try:
- text = "#define ARDUINO_ESP8266_GIT_VER 0x{}\n".format(git("rev-parse", "--short=8", "HEAD"))
36
+ git_ver = git("rev-parse", "--short=8", "HEAD")
37
except Exception:
38
pass
39
+ text = "#define ARDUINO_ESP8266_GIT_VER 0x{}\n".format(git_ver)
40
41
# version is
42
# - using Arduino-CLI:
0 commit comments