mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export HOMEBREW_CCCFG="O${HOMEBREW_CCCFG}"
|
|
|
|
ant=/usr/bin/ant
|
|
# HOMEBREW_BREW_FILE is set by bin/brew
|
|
# shellcheck disable=SC2154
|
|
[[ -x "${ant}" ]] || ant="$("${HOMEBREW_BREW_FILE}" --prefix ant)/bin/ant"
|
|
exec "${ant}" "$@"
|