Skip to content

Commit

Permalink
fix(@angular/cli): add closing single quote
Browse files Browse the repository at this point in the history
add closing quote to architect command error message
  • Loading branch information
timmyg authored and hansl committed May 10, 2018
1 parent 0344563 commit 325baa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@angular/cli/models/architect-command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export abstract class ArchitectCommand extends Command<ArchitectCommandOptions>
return allProjectsForTargetName;
}

throw new Error(`Could not determine a single project for the '${targetName} target.`);
throw new Error(`Could not determine a single project for the '${targetName}' target.`);
}
}

Expand Down

0 comments on commit 325baa6

Please sign in to comment.