Skip to content

Commit

Permalink
UD-960: use [] to englobe project name in command prefix
Browse files Browse the repository at this point in the history
Change-Id: I431d02eecdfa522e7bf5f5fc640e746fe6e30ad4
Signed-off-by: Florent BENOIT <fbenoit@codenvy.com>
  • Loading branch information
benoitf committed Jan 14, 2016
1 parent 4dbdc20 commit f1adf76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ class CreateProjectCtrl {
let commands = projectData.project.commands;
if (commands && commands.length > 0) {
commands.forEach((command) => {
command.name = projectName + ':' + command.name;
command.name = '[' + projectName + '] ' + command.name;
promise = promise.then(this.codenvyAPI.getWorkspace().addCommand(workspaceId, command));
});

Expand Down

0 comments on commit f1adf76

Please sign in to comment.