Commit 5b569149 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

mvn: fix formatting

parent 9afaa0c4
......@@ -22,11 +22,11 @@ RESET_FORMATTING=$(tput sgr0)
# if found an executable ./mvnw file execute it otherwise execute orignal mvn
mvn-or-mvnw() {
if [ -x ./mvnw ] ; then
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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment