Skip to content

Commit

Permalink
fix(create-license): replace year in license template (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscard0m authored Mar 4, 2021
1 parent a9a6c38 commit 1831fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/create-license.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default async function createLicense(name) {
await writePrettyFile(
"LICENSE.md",
getTemplateFileContent("LICENSE.md")
.replace("{{YEAR}}>", new Date().getFullYear())
.replace("{{YEAR}}", new Date().getFullYear())
.replace("{{OWNER}}", name)
);
}

0 comments on commit 1831fd1

Please sign in to comment.