We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 571d73f commit 47ffdacCopy full SHA for 47ffdac
bin/apply-template
@@ -91,9 +91,9 @@ const run = co.wrap(function* () {
91
rename: function (target) {
92
debug('rename', target)
93
Object.keys(resolvedVariables).forEach(templateVariable => {
94
- if (target.indexOf(`{[${templateVariable}]}`) > -1) {
+ if (target.indexOf(`{[.${templateVariable}.]}`) > -1) {
95
target = target.replace(
96
- `{[${templateVariable}]}`,
+ `{[.${templateVariable}.]}`,
97
resolvedVariables[templateVariable]
98
)
99
}
0 commit comments