From 0753006088911956aa1d578ee9c640b494d01fde Mon Sep 17 00:00:00 2001 From: Janosch Schwalm Date: Mon, 11 Dec 2017 20:30:05 +0100 Subject: [PATCH] inform the user :) --- plugins/mvn/mvn.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/mvn/mvn.plugin.zsh b/plugins/mvn/mvn.plugin.zsh index c1e445c0..6a8d480e 100644 --- a/plugins/mvn/mvn.plugin.zsh +++ b/plugins/mvn/mvn.plugin.zsh @@ -23,6 +23,7 @@ RESET_FORMATTING=$(tput sgr0) # if found a ./mvnw file execute it otherwise execute orignal mvn mvn-or-mvnw() { if [ -f ./mvnw ] ; then + echo "executing mvnw instead of mvn" ./mvnw "$@"; else mvn "$@";