Skip to content

Commit d203b90

Browse files
authored
chore: http to https in docs and console logs (#490)
1 parent 221ad65 commit d203b90

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

completion/bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Borrowed from grunt-cli
4-
# http://gruntjs.com/
4+
# https://gruntjs.com/
55
#
66
# Copyright (c) 2012 Tyler Kellen, contributors
77
# Licensed under the MIT license.

completion/zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/zsh
22

33
# Borrowed from grunt-cli
4-
# http://gruntjs.com/
4+
# https://gruntjs.com/
55
#
66
# Copyright (c) 2012 Tyler Kellen, contributors
77
# Licensed under the MIT license.

lib/console/help.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function printAllHelp(list) {
6868
]);
6969

7070
console.log('For more help, you can use \'hexo help [command]\' for the detailed information');
71-
console.log('or you can check the docs:', underline('http://hexo.io/docs/'));
71+
console.log('or you can check the docs:', underline('https://hexo.io/docs/'));
7272

7373
return Promise.resolve();
7474
}

lib/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Context {
5252
this.log.fatal(
5353
{err},
5454
'Something\'s wrong. Maybe you can find the solution here: %s',
55-
underline('http://hexo.io/docs/troubleshooting.html')
55+
underline('https://hexo.io/docs/troubleshooting.html')
5656
);
5757
}
5858

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
"hexo",
3434
"cli"
3535
],
36-
"author": "Tommy Chen <[email protected]> (http://zespia.tw)",
36+
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
3737
"maintainers": [
38-
"Abner Chou <[email protected]> (http://abnerchou.me)"
38+
"Abner Chou <[email protected]> (https://abnerchou.me)"
3939
],
4040
"license": "MIT",
4141
"dependencies": {

0 commit comments

Comments
 (0)