From f350c19c40401dd83c2eb81b1a45a3be22df4521 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 27 Sep 2012 18:34:12 -0400 Subject: fix me accidentally starting the args array at 0 --- jh-mvn-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'jh-mvn-install.sh') diff --git a/jh-mvn-install.sh b/jh-mvn-install.sh index 84b0fc4..2be9cce 100644 --- a/jh-mvn-install.sh +++ b/jh-mvn-install.sh @@ -7,8 +7,8 @@ if [[ $# != 5 ]]; then fi base="`$jh_cmd mvn-basename $1 $2 $3" -jarfile=$3 -pomfile=$4 +jarfile=$4 +pomfile=$5 dir="${base%/*}" install -d "${DESTDIR}${dir}" -- cgit v1.2.3