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

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