Skip to content

Commit a9a1825

Browse files
authored
shorten message
addressing comment: #2234 (comment)
1 parent 93e18f8 commit a9a1825

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/projmgr/src/ProjMgr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,8 +1246,8 @@ bool ProjMgr::ValidateCreatedFor(const string& createdFor) {
12461246
if (VersionCmp::RangeCompare(version, currentVersion + ":" + currentVersion) <= 0) {
12471247
return true;
12481248
} else {
1249-
const string msg = "the 'created-for' node in file " + m_csolutionFile + " specifies a minimum version "
1250-
+ version + " which is higher than " + currentVersion + " of the used CMSIS-Toolbox manifest";
1249+
const string msg = "'created-for' node in file " + m_csolutionFile + " specifies a minimum version "
1250+
+ version + "(current version " + currentVersion + ")";
12511251
if (m_rpcMode) {
12521252
ProjMgrLogger::Get().Warn(msg);
12531253
return true;

0 commit comments

Comments
 (0)