Skip to content

Commit

Permalink
Merge pull request #5 from mcanoy/lower
Browse files Browse the repository at this point in the history
support uppercase
  • Loading branch information
mcanoy authored May 25, 2021
2 parents 2b173c7 + c07e3cf commit 83b097e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ String getOverrideFileName(String engagementType) {
String baseFileName = runtimeBaseConfig.substring(0, index);
String baseFileType = runtimeBaseConfig.substring(index + 1);

return new StringBuilder(baseFileName).append("-").append(engagementType.toLowerCase()).append(".")
return new StringBuilder(baseFileName).append("-").append(engagementType).append(".")
.append(baseFileType).toString();

}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
more_information:
some_value: hello
another_value: type two
some_value: hello
other_options:
types:
options:
Expand Down

0 comments on commit 83b097e

Please sign in to comment.