#!/bin/sh
# A shorthand for "guix authenticate", for use by the daemon.

if test "x$GUIX_UNINSTALLED" = "x"
then
    prefix="/usr"
    exec_prefix="/usr"
    exec "/usr/bin/guix" authenticate "$@"
else
    exec guix authenticate "$@"
fi
