ENH: Remove extra new line after the written string
This commit is contained in:
parent
d6ebc123f7
commit
11e212bfc2
|
@ -91,7 +91,7 @@ bool cmFileCommand::HandleWriteCommand(std::vector<std::string> const& args,
|
|||
this->SetError(error.c_str());
|
||||
return false;
|
||||
}
|
||||
file << message << std::endl;
|
||||
file << message;
|
||||
file.close();
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue