Skip to content

Commit

Permalink
fix: #4212 versioning comment not always present
Browse files Browse the repository at this point in the history
  • Loading branch information
Unitech committed Apr 5, 2019
1 parent c562368 commit 79b4626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/API/CliUx.js
Expand Up @@ -158,7 +158,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.trim() },
{ 'comment' : pm2_env.versioning.comment ? pm2_env.versioning.comment.trim() : '' },
{ 'branch' : pm2_env.versioning.branch }
);
console.log(table2.toString());
Expand Down

0 comments on commit 79b4626

Please sign in to comment.