10 lines
236 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash
2016-08-07 12:52:27 +02:00
2021-04-18 18:34:16 +09:00
export HOMEBREW_CCCFG="O${HOMEBREW_CCCFG}"
2016-08-07 12:52:27 +02:00
ant=/usr/bin/ant
2021-04-18 18:34:16 +09:00
# HOMEBREW_BREW_FILE is set by bin/brew
# shellcheck disable=SC2154
[[ -x "${ant}" ]] || ant="$("${HOMEBREW_BREW_FILE}" --prefix ant)/bin/ant"
exec "${ant}" "$@"