mirror of https://github.com/apache/maven.git
Submitted by: Vincent Massol
allow spaces in local repository path git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@191293 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a72409b091
commit
20e6d21710
|
@ -500,7 +500,9 @@ public class Verifier
|
|||
cli.createArgument().setLine( "-D" + key + "=" + properties.getProperty( key ) );
|
||||
}
|
||||
|
||||
cli.createArgument().setLine( "-Dmaven.repo.local=" + localRepo );
|
||||
// Note: Make sure that the repo is surrounded by quotes as it can possibly have
|
||||
// spaces in its path.
|
||||
cli.createArgument().setLine( "-Dmaven.repo.local=" + "\"" + localRepo + "\"" );
|
||||
|
||||
for ( Iterator i = allGoals.iterator(); i.hasNext(); )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue