This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
function mvn_wrapper() { | |
local mvn | |
# integrate with custom mvn_color wrapper | |
if [ "$(type -t mvn_color)" == "function" ]; then | |
mvn=mvn_color | |
else | |
# locate mvn from user's path |