Anakha
Anakha

Reputation: 53

Apache Ant Installation In Mac

I installed ant using home brew. Now the ant -version gives me the installed version, but how do i find out where ant is installed on my mac?

Kindly help?

Upvotes: 1

Views: 2151

Answers (1)

thekbb
thekbb

Reputation: 7924

brew is going to put a symlink in /usr/local/bin/that points to the installation in /usr/local/Cellar/ant/

To find the complete path: ls -l $(which ant)

Upvotes: 1

Related Questions