diff options
author | Théophane Hufschmitt <theophane.hufschmitt@tweag.io> | 2023-03-31 15:27:02 +0200 |
---|---|---|
committer | Théophane Hufschmitt <theophane.hufschmitt@tweag.io> | 2023-03-31 15:27:02 +0200 |
commit | 4e7a78ca97b0de6671c2e7284c54e58b74c03a10 (patch) | |
tree | b3e3c9825fabf3c1fd9a5306746e772741d70865 /tests/installer/default.nix | |
parent | bb6e1244a3b69a659abd2a6086542ef2e32be4ec (diff) |
test: Don't add a channel for the force-no-daemon installer variant
Was probably an overlook of when the tests were first added, but that
now messes-up with the `nix-channel --update` that happens down the line
(and can't access the network since we're inside a Nix build)
Diffstat (limited to 'tests/installer/default.nix')
-rw-r--r-- | tests/installer/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/installer/default.nix b/tests/installer/default.nix index 8c9784eaf..76ee6530b 100644 --- a/tests/installer/default.nix +++ b/tests/installer/default.nix @@ -17,7 +17,7 @@ let script = '' tar -xf ./nix.tar.xz mv ./nix-* nix - ./nix/install --no-daemon + ./nix/install --no-daemon --no-channel-add ''; }; |