mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
Fix remaining references to "substitute-binary".
* nix/nix-daemon/guix-daemon.cc (main): Change substitute-binary to substitute. * po/guix/POTFILES.in: Likewise. * tests/guix-daemon.sh: Likewise. * tests/guix-system.sh: Likewise.
This commit is contained in:
parent
24066017a9
commit
122c87ead0
4 changed files with 5 additions and 5 deletions
|
@ -310,7 +310,7 @@ main (int argc, char *argv[])
|
||||||
if (subs == "default")
|
if (subs == "default")
|
||||||
{
|
{
|
||||||
string subst =
|
string subst =
|
||||||
settings.nixLibexecDir + "/guix/substitute-binary";
|
settings.nixLibexecDir + "/guix/substitute";
|
||||||
setenv ("NIX_SUBSTITUTERS", subst.c_str (), 1);
|
setenv ("NIX_SUBSTITUTERS", subst.c_str (), 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ guix/scripts/package.scm
|
||||||
guix/scripts/gc.scm
|
guix/scripts/gc.scm
|
||||||
guix/scripts/hash.scm
|
guix/scripts/hash.scm
|
||||||
guix/scripts/pull.scm
|
guix/scripts/pull.scm
|
||||||
guix/scripts/substitute-binary.scm
|
guix/scripts/substitute.scm
|
||||||
guix/scripts/authenticate.scm
|
guix/scripts/authenticate.scm
|
||||||
guix/scripts/system.scm
|
guix/scripts/system.scm
|
||||||
guix/scripts/lint.scm
|
guix/scripts/lint.scm
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#
|
#
|
||||||
# Test the daemon and its interaction with 'guix substitute-binary'.
|
# Test the daemon and its interaction with 'guix substitute'.
|
||||||
#
|
#
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
@ -51,7 +51,7 @@ Deriver: $drv
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Remove the cached narinfo.
|
# Remove the cached narinfo.
|
||||||
rm -f "$XDG_CACHE_HOME/guix/substitute-binary/$hash_part"
|
rm -f "$XDG_CACHE_HOME/guix/substitute/$hash_part"
|
||||||
|
|
||||||
# Make sure we see the substitute.
|
# Make sure we see the substitute.
|
||||||
guile -c '
|
guile -c '
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#
|
#
|
||||||
# Test the daemon and its interaction with 'guix substitute-binary'.
|
# Test the daemon and its interaction with 'guix substitute'.
|
||||||
#
|
#
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
Loading…
Reference in a new issue