#!/usr/bin/env bash

readonly SCRIPT_NAME="limine-list"
export HOOK_CALLER="$SCRIPT_NAME"

# Check if limine-entry-tool exists
if ! command -v limine-entry-tool &>/dev/null; then
	echo "ERROR: limine-entry-tool not found." >&2
	exit 1
fi
exec limine-entry-tool --no-hooks --tree "${@}"
