#!/bin/sh
# Wrapper for Exine binary installed by Cargo
if command -v exine >/dev/null 2>&1; then
  exec exine "$@"
else
  echo "Error: Exine binary not found. Please ensure 'cargo install' succeeded."
  exit 1
fi
