Skip to content

Commit

Permalink
makefile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrej730 committed Jul 12, 2023
1 parent 4ad1a2b commit 91e7d49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/blenderbim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/blenderbim/blenderbim/bim/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 91e7d49

Please sign in to comment.