You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2019/01/08 23:57:27 UTC

[maven] branch MNG-6256 updated (ad21680 -> a939654)

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a change to branch MNG-6256
in repository https://gitbox.apache.org/repos/asf/maven.git.


 discard ad21680  [MNG-6256] Check ITs tests without patch
     new a939654  [MNG-6256] Surround parameter of echo command with double quotes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (ad21680)
            \
             N -- N -- N   refs/heads/MNG-6256 (a939654)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile                  | 2 +-
 apache-maven/src/bin/mvn.cmd | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


[maven] 01/01: [MNG-6256] Surround parameter of echo command with double quotes

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch MNG-6256
in repository https://gitbox.apache.org/repos/asf/maven.git

commit a939654b765f06b1c1ee811a297b02e83b4ac316
Author: Christoph Etzel <ch...@informatik.uni-augsburg.de>
AuthorDate: Fri Jul 14 10:26:06 2017 +0200

    [MNG-6256] Surround parameter of echo command with double quotes
    
    Fixes #128, #228
---
 apache-maven/src/bin/mvn.cmd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/apache-maven/src/bin/mvn.cmd b/apache-maven/src/bin/mvn.cmd
index 823ccf0..fd1b21e 100644
--- a/apache-maven/src/bin/mvn.cmd
+++ b/apache-maven/src/bin/mvn.cmd
@@ -115,7 +115,7 @@ if "%FILE_ARG%" == "" (
   goto findBaseDir
 )
 if not exist "%FILE_ARG%" (
-  echo POM file %FILE_ARG% specified the -f/--file command-line argument does not exist >&2
+  echo POM file "%FILE_ARG%" specified the -f/--file command-line argument does not exist >&2
   goto error
 )
 if exist "%FILE_ARG%\*" (
@@ -124,7 +124,7 @@ if exist "%FILE_ARG%\*" (
   call :get_directory_from_file "%FILE_ARG%"
 )
 if not exist "%POM_DIR%" (
-  echo Directory %POM_DIR% extracted from the -f/--file command-line argument %FILE_ARG% does not exist >&2
+  echo Directory "%POM_DIR%" extracted from the -f/--file command-line argument "%FILE_ARG%" does not exist >&2
   goto error
 )
 set "WDIR=%POM_DIR%"