mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
12 lines
244 B
Text
12 lines
244 B
Text
|
#!@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
|