guix-authenticate.in 250 B

123456789101112
  1. #!@SHELL@
  2. # A shorthand for "guix authenticate", for use by the daemon.
  3. if test "x$GUIX_UNINSTALLED" = "x"
  4. then
  5. prefix="@prefix@"
  6. exec_prefix="@exec_prefix@"
  7. exec "@bindir@/guix" authenticate "$@"
  8. else
  9. exec guix authenticate "$@"
  10. fi