mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-14 08:47:13 +00:00
Fix merge issues
This commit is contained in:
parent
02a22086a1
commit
1d2d05cfdf
1 changed files with 0 additions and 4 deletions
|
@ -35,8 +35,6 @@ class GitVersion:
|
|||
or "unknown"
|
||||
)
|
||||
|
||||
branch_num = self._exec_git("rev-list --count HEAD") or "n/a"
|
||||
|
||||
version = (
|
||||
os.environ.get("DIST_SUFFIX", None)
|
||||
or "unknown"
|
||||
|
@ -58,7 +56,6 @@ class GitVersion:
|
|||
return {
|
||||
"GIT_COMMIT": commit,
|
||||
"GIT_BRANCH": branch,
|
||||
"GIT_BRANCH_NUM": branch_num,
|
||||
"FURI_CUSTOM_FLIPPER_NAME": custom_fz_name,
|
||||
"VERSION": version,
|
||||
"BUILD_DIRTY": dirty and 1 or 0,
|
||||
|
@ -67,7 +64,6 @@ class GitVersion:
|
|||
return {
|
||||
"GIT_COMMIT": commit,
|
||||
"GIT_BRANCH": branch,
|
||||
"GIT_BRANCH_NUM": branch_num,
|
||||
"VERSION": version,
|
||||
"BUILD_DIRTY": dirty and 1 or 0,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue