Skip to content

Commit d550a9f

Browse files
authored
Use https instead of http (#627)
1 parent c27d851 commit d550a9f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

33
# top-most EditorConfig file
44
root = true

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6-
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
<!-- markdownlint-disable MD024 -->
99

@@ -140,7 +140,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
140140

141141
- log message after install from cache (previously silent)
142142
- extra logging after install if the active and installed node locations are different
143-
- support for [NO_COLOR](http://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors)
143+
- support for [NO_COLOR](https://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors)
144144
- suppress progress and colour if not interactive tty
145145
- define `N_USE_XZ` to download `.xz` compressed archives instead of `.gz` archives
146146

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Node.js version management: no subshells, no profile setup, no convoluted API, just **simple**.
99

10-
![usage animation](http://nimit.io/images/n/n.gif)
10+
![usage animation](https://nimit.io/images/n/n.gif)
1111

1212
(Note: `n` is not supported natively on Windows.)
1313

@@ -240,7 +240,7 @@ In brief:
240240

241241
- `N_NODE_MIRROR`: See [Custom source](#custom-source)
242242
- `N_NODE_DOWNLOAD_MIRROR`: See [Custom source](#custom-source)
243-
- support for [NO_COLOR](http://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors) for controlling use of ANSI color codes
243+
- support for [NO_COLOR](https://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors) for controlling use of ANSI color codes
244244
- `N_MAX_REMOTE_MATCHES` to change the default `ls-remote` maximum of 20 matching versions
245245
- `N_PRESERVE_NPM`: See [Preserving npm](#preserving-npm)
246246

bin/n

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ g_mirror_url=${N_NODE_MIRROR}
7373
g_mirror_folder_name="node"
7474

7575
# Options for curl and wget.
76-
# Defining commands in variables is fraught (http://mywiki.wooledge.org/BashFAQ/050)
76+
# Defining commands in variables is fraught (https://mywiki.wooledge.org/BashFAQ/050)
7777
# but we can follow the simple case and store arguments in an array.
7878

7979
GET_SHOWS_PROGRESS="false"
@@ -109,7 +109,7 @@ ARCH=
109109

110110
# ANSI escape codes
111111
# https://en.wikipedia.org/wiki/ANSI_escape_code
112-
# http://no-color.org
112+
# https://no-color.org
113113
# https://bixense.com/clicolors
114114

115115
USE_COLOR="true"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{
1414
"name": "Nimit Kalra",
1515
"email": "[email protected]",
16-
"url": "http://nimit.io"
16+
"url": "https://nimit.io"
1717
},
1818
{
1919
"name": "Troy Connor",

0 commit comments

Comments
 (0)