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 ed3ef8b commit d85fc11Copy full SHA for d85fc11
resources/gen-changelog.js
@@ -38,7 +38,7 @@ const labelsConfig = {
38
const GH_TOKEN = process.env['GH_TOKEN'];
39
40
if (!GH_TOKEN) {
41
- console.error('Must provide GH_TOKEN as enviroment variable!');
+ console.error('Must provide GH_TOKEN as environment variable!');
42
process.exit(1);
43
}
44
@@ -51,7 +51,7 @@ const match = /https:\/\/github.com\/([^/]+)\/([^/]+).git/.exec(
51
packageJSON.repository.url,
52
);
53
if (match == null) {
54
- console.error('Can not extract organisation and repo name from repo URL!');
+ console.error('Cannot extract organisation and repo name from repo URL!');
55
56
57
const [, githubOrg, githubRepo] = match;
0 commit comments