Skip to content

Commit e154fbd

Browse files
committed
chore: http to https in docs and console logs
1 parent bdd3987 commit e154fbd

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
@@ -54,7 +54,7 @@ class Context extends EventEmitter {
5454
this.log.fatal(
5555
{err},
5656
'Something\'s wrong. Maybe you can find the solution here: %s',
57-
underline('http://hexo.io/docs/troubleshooting.html')
57+
underline('https://hexo.io/docs/troubleshooting.html')
5858
);
5959
}
6060

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)