mvn: fix formatting

This commit is contained in:
Marc Cornellà 2019-02-17 17:34:31 +01:00
parent 9afaa0c406
commit 5b569149f3

View File

@ -24,9 +24,9 @@ RESET_FORMATTING=$(tput sgr0)
mvn-or-mvnw() {
if [ -x ./mvnw ]; then
echo "executing mvnw instead of mvn"
./mvnw "$@";
./mvnw "$@"
else
mvn "$@";
mvn "$@"
fi
}
@ -48,9 +48,6 @@ mvn-color() {
)
}
# Override the mvn command with the colorized one.
#alias mvn="mvn-color"
# either use orignal mvn oder the mvn wrapper
alias mvn="mvn-or-mvnw"
@ -296,10 +293,9 @@ function listMavenCompletions {
cobertura:cobertura
-Dtest=$(if [ -d ./src/test/java ] ; then find ./src/test/java -type f -name '*.java' | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dtest=\1?' ; fi)
-Dit.test=$(if [ -d ./src/test/java ] ; then find ./src/test/java -type f -name '*.java' | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dit.test=\1?' ; fi)
);
)
}
compctl -K listMavenCompletions mvn mvnw
compctl -K listMavenCompletions mvn-color
compctl -K listMavenCompletions mvn-or-mvnw