summaryrefslogtreecommitdiff
path: root/modules/ProjectCreator.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2014-09-09 14:46:16 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2014-09-09 14:46:16 +0000
commitbc269fce067cc01856594c4cddcb2bcc03f1c7b8 (patch)
treeb862602ed42ff57d55bbee12b19f2f2ee667fea2 /modules/ProjectCreator.pm
parent1ea362b53c8424983e198ed1bd50dc26507b2632 (diff)
downloadMPC-bc269fce067cc01856594c4cddcb2bcc03f1c7b8.tar.gz
ChangeLogTag: Tue Sep 9 14:43:48 UTC 2014 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/ProjectCreator.pm')
-rw-r--r--modules/ProjectCreator.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index bc08095a..647f0c77 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -5497,8 +5497,10 @@ sub project_file_name {
## Fill in the name if one wasn't provided
$name = $self->get_assignment('project_name') if (!defined $name);
+ ## Apply the transformation so that any name modifiers are utilized.
return $self->get_modified_project_file_name(
- $self->project_file_prefix() . $name,
+ $self->project_file_prefix() .
+ $self->transform_file_name($name),
$self->project_file_extension());
}