mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
daemon: Disable use of substitutes for now.
* nix/nix-daemon/guix-daemon.cc (main): Set `settings.useSubstitutes' to false, and `settings.substituters' to the empty list.
This commit is contained in:
parent
4a44e743a0
commit
335dd762cc
1 changed files with 4 additions and 0 deletions
|
@ -152,6 +152,10 @@ main (int argc, char *argv[])
|
|||
|
||||
settings.processEnvironment ();
|
||||
|
||||
/* FIXME: Disable substitutes until we have something that works. */
|
||||
settings.useSubstitutes = false;
|
||||
settings.substituters.clear ();
|
||||
|
||||
argp_parse (&argp, argc, argv, 0, 0, 0);
|
||||
|
||||
argvSaved = argv;
|
||||
|
|
Loading…
Reference in a new issue