infrastructure/ci/docs.sh
2024-02-22 17:21:30 -08:00

16 lines
244 B
Bash

#!/usr/bin/env bash
set -eu
docs_try() {
local CMD=$1
shift
if type -P "$CMD" > /dev/null 2>&1; then
exec "$CMD" "$NF_DOCS_PATH/index.html" "$@"
fi
}
docs_try xdg-open "$@"
docs_try open "$@"
docs_try firefox "$@"
docs_try chrome "$@"