diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-09-03 21:59:45 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-09-08 11:49:24 +0200 |
commit | 9fcc35c51fd579b3bb7b4f61cba6973675c3922c (patch) | |
tree | 51dcf3d81a20f2cc3330d329ccf4f8537d203578 /nix/scripts | |
parent | 0c684b7edfacada4f576855dbb09291f04a84fa2 (diff) | |
download | guix-9fcc35c51fd579b3bb7b4f61cba6973675c3922c.tar guix-9fcc35c51fd579b3bb7b4f61cba6973675c3922c.tar.gz |
daemon: Run 'guix perform-download' directly.
* nix/scripts/download.in: Remove.
* nix/local.mk (nodist_pkglibexec_SCRIPTS): Remove 'scripts/download'.
* config-daemon.ac: Don't output 'nix/scripts/download'.
* nix/libstore/builtins.cc (builtinDownload): Invoke 'guix
perform-download' directly.
Diffstat (limited to 'nix/scripts')
-rw-r--r-- | nix/scripts/download.in | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/nix/scripts/download.in b/nix/scripts/download.in deleted file mode 100644 index 4d7088a993..0000000000 --- a/nix/scripts/download.in +++ /dev/null @@ -1,11 +0,0 @@ -#!@SHELL@ -# A shorthand for "guix perform-download", for use by the daemon. - -if test "x$GUIX_UNINSTALLED" = "x" -then - prefix="@prefix@" - exec_prefix="@exec_prefix@" - exec "@bindir@/guix" perform-download "$@" -else - exec guix perform-download "$@" -fi |