aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2023-03-31 15:27:02 +0200
committerThéophane Hufschmitt <theophane.hufschmitt@tweag.io>2023-03-31 15:27:02 +0200
commit4e7a78ca97b0de6671c2e7284c54e58b74c03a10 (patch)
treeb3e3c9825fabf3c1fd9a5306746e772741d70865
parentbb6e1244a3b69a659abd2a6086542ef2e32be4ec (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)
-rw-r--r--tests/installer/default.nix2
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
'';
};