#!/bin/bash
# wv-env: Wrapper that ensures Homebrew tools are in PATH before calling wv.
# Useful on macOS where /opt/homebrew/bin is not always in PATH for subprocesses.
export PATH="/opt/homebrew/bin:/usr/local/bin:$PATH"
exec wv "$@"
