Skip to content

Commit

Permalink
Fix version string
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodasilva committed Dec 30, 2021
1 parent 8fcf066 commit c74e33c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/version.cc.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ std::string GetVersionString() {
std::stringstream ss;
ss << "Window.js revision " << kGitHash;
if (!kGitTag.empty()) {
ss << "version " << kGitTag;
ss << " version " << kGitTag;
}
return ss.str();
}

0 comments on commit c74e33c

Please sign in to comment.