0
0
mirror of https://github.com/tj/n.git synced 2024-11-21 10:38:57 +01:00

Use https instead of http (#627)

This commit is contained in:
Daniel Ruf 2020-07-15 10:39:09 +02:00 committed by GitHub
parent c27d85148a
commit d550a9f60e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
# EditorConfig is awesome: http://EditorConfig.org
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true

View File

@ -2,8 +2,8 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
<!-- markdownlint-disable MD024 -->
@ -140,7 +140,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- log message after install from cache (previously silent)
- extra logging after install if the active and installed node locations are different
- support for [NO_COLOR](http://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors)
- support for [NO_COLOR](https://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors)
- suppress progress and colour if not interactive tty
- define `N_USE_XZ` to download `.xz` compressed archives instead of `.gz` archives

View File

@ -7,7 +7,7 @@
Node.js version management: no subshells, no profile setup, no convoluted API, just **simple**.
![usage animation](http://nimit.io/images/n/n.gif)
![usage animation](https://nimit.io/images/n/n.gif)
(Note: `n` is not supported natively on Windows.)
@ -240,7 +240,7 @@ In brief:
- `N_NODE_MIRROR`: See [Custom source](#custom-source)
- `N_NODE_DOWNLOAD_MIRROR`: See [Custom source](#custom-source)
- support for [NO_COLOR](http://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors) for controlling use of ANSI color codes
- support for [NO_COLOR](https://no-color.org) and [CLICOLOR=0](https://bixense.com/clicolors) for controlling use of ANSI color codes
- `N_MAX_REMOTE_MATCHES` to change the default `ls-remote` maximum of 20 matching versions
- `N_PRESERVE_NPM`: See [Preserving npm](#preserving-npm)

4
bin/n
View File

@ -73,7 +73,7 @@ g_mirror_url=${N_NODE_MIRROR}
g_mirror_folder_name="node"
# Options for curl and wget.
# Defining commands in variables is fraught (http://mywiki.wooledge.org/BashFAQ/050)
# Defining commands in variables is fraught (https://mywiki.wooledge.org/BashFAQ/050)
# but we can follow the simple case and store arguments in an array.
GET_SHOWS_PROGRESS="false"
@ -109,7 +109,7 @@ ARCH=
# ANSI escape codes
# https://en.wikipedia.org/wiki/ANSI_escape_code
# http://no-color.org
# https://no-color.org
# https://bixense.com/clicolors
USE_COLOR="true"

View File

@ -13,7 +13,7 @@
{
"name": "Nimit Kalra",
"email": "me@nimit.io",
"url": "http://nimit.io"
"url": "https://nimit.io"
},
{
"name": "Troy Connor",