#!/bin/bash --
# chaperon/stubs/sprio — Chaperon-proxied sprio stub
#
# Proxies sprio through the chaperon, which injects --user=$(whoami)
# to scope output to the current user's jobs.

set -euo pipefail

_STUB_DIR="$(cd "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" && pwd)"
source "$_STUB_DIR/_stub_lib.sh"

chaperon_call sprio "$@"
exit $?
