You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by kw...@apache.org on 2022/09/13 11:59:35 UTC

svn commit: r56801 - /dev/jackrabbit/check-release.sh

Author: kwin
Date: Tue Sep 13 11:59:35 2022
New Revision: 56801

Log:
always ignore .gitignore and .gitattributes in src.zip when comparing with SCM export

Modified:
    dev/jackrabbit/check-release.sh

Modified: dev/jackrabbit/check-release.sh
==============================================================================
--- dev/jackrabbit/check-release.sh (original)
+++ dev/jackrabbit/check-release.sh Tue Sep 13 11:59:35 2022
@@ -53,7 +53,8 @@ else
       MVN_ARGS=""
       CLEAN_SCM=".gitignore .gitattributes .git"
       HASHES="sha512"
-      CLEAN_ZIP="DEPENDENCIES" # the DEPENDENCIES are automatically generated during the release and are not in svn
+      CLEAN_ZIP="DEPENDENCIES .gitignore .gitattributes" # the DEPENDENCIES are automatically generated during the release and are not in SCM
+      # in newer versions git metadata is contained in the src.zip (https://lists.apache.org/thread/pj1csswgmdo924gp2myvbx73516dpk7c)
     ;;
     "filevault")
       COMPONENT="jackrabbit-filevault"
@@ -64,6 +65,7 @@ else
       MVN_ARGS=""
       CLEAN_SCM=".gitignore .gitattributes .git"
       HASHES="sha1 sha512"
+      CLEAN_ZIP=".gitignore .gitattributes" # in newer versions this metadata is contained in the src.zip (https://lists.apache.org/thread/pj1csswgmdo924gp2myvbx73516dpk7c)
     ;;
     "oak")
       RCDIR="$COMPONENT/$VERSION"