1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

Fix the quoting of command-line arguments in the wrapper script

PR:		ports/173146
Reported by:	swills
Feature safe:	yes
This commit is contained in:
Herve Quiroz 2012-11-04 21:39:41 +00:00
parent f5c8f28a13
commit 9a416ea0cc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306984
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= maven-wrapper
PORTVERSION= 1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel java
MASTER_SITES= # none
DISTFILES= # none

View File

@ -26,4 +26,4 @@ if [ -z "${M2_HOME}" ] ; then
fi
export M2_HOME
exec "${M2_HOME}/bin/mvn" $@
exec "${M2_HOME}/bin/mvn" "$@"