Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1831fd1

Browse files
authoredMar 4, 2021
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

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.