You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2022/12/15 23:22:52 UTC

[maven] branch maven-3.8.x updated: fix unstash path

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

olamy pushed a commit to branch maven-3.8.x
in repository https://gitbox.apache.org/repos/asf/maven.git


The following commit(s) were added to refs/heads/maven-3.8.x by this push:
     new 64aad3f5c fix unstash path
64aad3f5c is described below

commit 64aad3f5c8d8f01f8aa5b58b3775c45332fea493
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Fri Dec 16 09:22:48 2022 +1000

    fix unstash path
---
 Jenkinsfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 39087eba4..47551c651 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -94,7 +94,9 @@ for (String os in runITsOses) {
                             bat "if exist it-local-repo rmdir /s /q it-local-repo"
                             bat "if exist apache-maven-dist.zip del /q apache-maven-dist.zip"
                         }
-                        unstash 'maven-dist'
+                        dir('dists') {
+                          unstash 'maven-dist'
+                        }
                         try {
                             withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                                         "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",