diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-09-27 18:34:12 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-09-27 18:34:12 -0400 |
commit | f350c19c40401dd83c2eb81b1a45a3be22df4521 (patch) | |
tree | 10cb42cd807a32773f2cd81151984d5531b614f4 /jh-mvn-install.sh | |
parent | e4ea57bd0d3cb50fda30e86b897359fa1875021a (diff) |
fix me accidentally starting the args array at 0
Diffstat (limited to 'jh-mvn-install.sh')
-rw-r--r-- | jh-mvn-install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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}" |