makefile fix

This commit is contained in:
Andrej730
2023-07-12 18:15:31 +05:00
parent 0a546d847c
commit e92217a362
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ endif
endif
VERSION:=`date '+%y%m%d'`
LAST_COMMIT_HASH:=$(git rev-parse HEAD)
LAST_COMMIT_HASH:=$(shell git rev-parse HEAD)
PYVERSION:=py310
ifeq ($(PYVERSION), py39)
+1 -1
View File
@@ -545,7 +545,7 @@ def draw_statusbar(self, context):
UIData.load()
text = f"BlenderBIM Add-on v{UIData.data['version']}"
if blenderbim.bim.last_commit_hash != "8888888":
text += f"@{blenderbim.bim.last_commit_hash[:7]}"
text += f"-{blenderbim.bim.last_commit_hash[:7]}"
self.layout.label(text=text)