Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
5b569149
Commit
5b569149
authored
Feb 17, 2019
by
Marc Cornellà
Browse files
mvn: fix formatting
parent
9afaa0c4
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/mvn/mvn.plugin.zsh
View file @
5b569149
...
@@ -22,11 +22,11 @@ RESET_FORMATTING=$(tput sgr0)
...
@@ -22,11 +22,11 @@ RESET_FORMATTING=$(tput sgr0)
# if found an executable ./mvnw file execute it otherwise execute orignal mvn
# if found an executable ./mvnw file execute it otherwise execute orignal mvn
mvn-or-mvnw
()
{
mvn-or-mvnw
()
{
if
[
-x
./mvnw
]
;
then
if
[
-x
./mvnw
]
;
then
echo
"executing mvnw instead of mvn"
echo
"executing mvnw instead of mvn"
./mvnw
"
$@
"
;
./mvnw
"
$@
"
else
else
mvn
"
$@
"
;
mvn
"
$@
"
fi
fi
}
}
...
@@ -48,9 +48,6 @@ mvn-color() {
...
@@ -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
# either use orignal mvn oder the mvn wrapper
alias
mvn
=
"mvn-or-mvnw"
alias
mvn
=
"mvn-or-mvnw"
...
@@ -296,10 +293,9 @@ function listMavenCompletions {
...
@@ -296,10 +293,9 @@ function listMavenCompletions {
cobertura:cobertura
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
)
-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
)
-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 mvnw
compctl
-K
listMavenCompletions mvn-color
compctl
-K
listMavenCompletions mvn-color
compctl
-K
listMavenCompletions mvn-or-mvnw
compctl
-K
listMavenCompletions mvn-or-mvnw
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment