Merge pull request #8232 from Icinga/bugfix/windows-version

Fix Windows .exe version v2.12.0 -> 2.12.0
This commit is contained in:
Alexander Aleksandrovič Klimov 2020-11-13 17:09:58 +01:00 committed by GitHub
commit 2d5e244127
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Icinga GmbH"
VALUE "FileDescription", "Icinga 2"
VALUE "FileVersion", VERSION
VALUE "FileVersion", ICINGA2_VERSION
VALUE "InternalName", "icinga2.exe"
VALUE "LegalCopyright", "© Icinga GmbH"
VALUE "OriginalFilename", "icinga2.exe"
VALUE "ProductName", "Icinga 2"
VALUE "ProductVersion", VERSION
VALUE "ProductVersion", ICINGA2_VERSION
END
END

View File

@ -1 +1,2 @@
#define VERSION "${GIT_VERSION}"
#define ICINGA2_VERSION "${ICINGA2_VERSION}"