Skip to content

Commit 1831fd1

Browse files
authored
fix(create-license): replace year in license template (#4)
1 parent a9a6c38 commit 1831fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/create-license.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default async function createLicense(name) {
55
await writePrettyFile(
66
"LICENSE.md",
77
getTemplateFileContent("LICENSE.md")
8-
.replace("{{YEAR}}>", new Date().getFullYear())
8+
.replace("{{YEAR}}", new Date().getFullYear())
99
.replace("{{OWNER}}", name)
1010
);
1111
}

0 commit comments

Comments
 (0)