mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 03:37:48 -06:00
Set build version to 0 if build version is ''
Contributes to CURA-9365
This commit is contained in:
parent
68a79684fd
commit
fd7c5abdc0
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ echo "CURA_VERSION_FULL={{ cura_version_full }}" >> ${{ env_prefix }}GITHUB_ENV
|
||||||
""").render(cura_version_major = cura_version.major,
|
""").render(cura_version_major = cura_version.major,
|
||||||
cura_version_minor = cura_version.minor,
|
cura_version_minor = cura_version.minor,
|
||||||
cura_version_patch = cura_version.patch,
|
cura_version_patch = cura_version.patch,
|
||||||
cura_version_build = cura_version.build,
|
cura_version_build = cura_version.build if cura_version.build != "" else "0",
|
||||||
cura_version_full = self.version,
|
cura_version_full = self.version,
|
||||||
env_prefix = env_prefix)
|
env_prefix = env_prefix)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue