Skip to content

Commit

Permalink
docs+test: fix remaining installer downloads without -L (NixOS#4006)
Browse files Browse the repository at this point in the history
Co-authored-by: lf- <[email protected]>
  • Loading branch information
lf- and lf- authored Sep 12, 2020
1 parent e1f2c93 commit 7cb5f64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/manual/src/release-notes/rl-1.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ features:
- The binary tarball installer has been improved. You can now install
Nix by running:

$ bash <(curl https://nixos.org/nix/install)
$ bash <(curl -L https://nixos.org/nix/install)

- More evaluation errors include position information. For instance,
selecting a missing attribute will print something like
Expand Down
2 changes: 1 addition & 1 deletion doc/manual/src/release-notes/rl-2.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ in certain situations. In addition, it has the following new features:
- The Nix installer now supports performing a Multi-User
installation for Linux computers which are running systemd. You
can select a Multi-User installation by passing the `--daemon`
flag to the installer: `sh <(curl https://nixos.org/nix/install)
flag to the installer: `sh <(curl -L https://nixos.org/nix/install)
--daemon`.

The multi-user installer cannot handle systems with SELinux. If
Expand Down
2 changes: 1 addition & 1 deletion tests/install-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ trap finish EXIT

# First setup Nix
cleanup
curl -o install https://nixos.org/nix/install
curl -L -o install https://nixos.org/nix/install
yes | bash ./install
verify

Expand Down

0 comments on commit 7cb5f64

Please sign in to comment.