Browse Source
Rename 'guix substitute-binary' to 'guix substitute'.
Rename 'guix substitute-binary' to 'guix substitute'.
* guix/scripts/substitute-binary.scm: Rename to... * guix/scripts/substitute.scm: ... this. Adjust module name, entry point, comments, and help string accordingly. * nix/scripts/substitute-binary.in: Rename to... * nix/scripts/substitute.in: ... this. * pre-inst-env.in (NIX_SUBSTITUTERS): Adjust accordingly. * tests/substitute-binary.scm: Rename to... * tests/substitute.scm: ... this. Adjust references to (guix scripts substitute) accordingly. * guix/ui.scm (show-guix-help)[internal?]: Change "substitute-binary" to "substitute". * Makefile.am (MODULES, SCM_TESTS): Adjust to file renames. * daemon.am (nodist_pkglibexec_SCRIPTS): Likewise. * config-daemon.ac: Likewise. * guix/tests.scm (call-with-derivation-narinfo): Adjust comments and docstring.version-0.8.3

12 changed files with 60 additions and 60 deletions
-
2.gitignore
-
4Makefile.am
-
4config-daemon.ac
-
2daemon.am
-
12guix/scripts/substitute.scm
-
4guix/tests.scm
-
2guix/ui.scm
-
11nix/scripts/substitute-binary.in
-
11nix/scripts/substitute.in
-
2pre-inst-env.in
-
10tests/store.scm
-
56tests/substitute.scm
@ -1,11 +0,0 @@ |
|||
#!@SHELL@ |
|||
# A shorthand for "guix substitute-binary", for use by the daemon. |
|||
|
|||
if test "x$GUIX_UNINSTALLED" = "x" |
|||
then |
|||
prefix="@prefix@" |
|||
exec_prefix="@exec_prefix@" |
|||
exec "@bindir@/guix" substitute-binary "$@" |
|||
else |
|||
exec guix substitute-binary "$@" |
|||
fi |
@ -0,0 +1,11 @@ |
|||
#!@SHELL@ |
|||
# A shorthand for "guix substitute", for use by the daemon. |
|||
|
|||
if test "x$GUIX_UNINSTALLED" = "x" |
|||
then |
|||
prefix="@prefix@" |
|||
exec_prefix="@exec_prefix@" |
|||
exec "@bindir@/guix" substitute "$@" |
|||
else |
|||
exec guix substitute "$@" |
|||
fi |
Write
Preview
Loading…
Cancel
Save
Reference in new issue