Skip to content

Commit

Permalink
fix: remove ending \n on git version comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed Sep 3, 2018
1 parent 6f1712f commit 9a36bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/API/CliUx.js
Expand Up @@ -148,7 +148,7 @@ UX.describeTable = function(process) {
{ 'repository root' : pm2_env.versioning.repo_path },
{ 'last update' : pm2_env.versioning.update_time },
{ 'revision' : pm2_env.versioning.revision },
{ 'comment' : pm2_env.versioning.comment },
{ 'comment' : pm2_env.versioning.comment.trim() },
{ 'branch' : pm2_env.versioning.branch }
);
console.log(table2.toString());
Expand Down

0 comments on commit 9a36bfe

Please sign in to comment.