You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/10/22 12:50:13 UTC

[isis] branch master updated: ISIS-3142: CI: don't exclude /antora/ from rename script

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 0904f82741 ISIS-3142: CI: don't exclude /antora/ from rename script
0904f82741 is described below

commit 0904f82741e8ff391bb5165ea092cccc647b43d9
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Oct 22 14:50:07 2022 +0200

    ISIS-3142: CI: don't exclude /antora/ from rename script
    
    - otherwise invalid pom gets picked up by legacy build)
---
 scripts/ci/rename-all-published-sources.jsh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/ci/rename-all-published-sources.jsh b/scripts/ci/rename-all-published-sources.jsh
index 1cc243ea2f..ec09f51d74 100644
--- a/scripts/ci/rename-all-published-sources.jsh
+++ b/scripts/ci/rename-all-published-sources.jsh
@@ -60,7 +60,7 @@ class RenameProject {
             "STATUS",
             "MF",
             "TXT",
-            "adoc",
+            // "adoc", // ignore adoc file content
             "bat",
             "cfg",
             "css",
@@ -107,7 +107,7 @@ class RenameProject {
     static final List<String> PATH_EXLUSIONS = List.of(
             "/build/",
             "/target/",
-            "/antora/", "/adoc/", // not published in its legacy form
+            "/adoc/", // not published in its legacy form
             "/scripts/ci/", // don't touch
             "/."
             );