Browse Source

utils: make version string parsable by semver utils

pull/2429/head
Maxim Prokhorov 3 years ago
parent
commit
252b98e0f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/utils.cpp

+ 1
- 1
code/espurna/utils.cpp View File

@ -108,7 +108,7 @@ const String& getCoreRevision() {
const String& getVersion() {
#if defined(APP_REVISION)
static const String value(F(APP_VERSION " (" APP_REVISION ")"));
static const String value(F(APP_VERSION APP_REVISION));
#else
static const String value(F(APP_VERSION));
#endif


Loading…
Cancel
Save