Continued: master
authorRoland Häder <roland@mxchange.org>
Tue, 9 Jan 2024 22:36:02 +0000 (23:36 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 9 Jan 2024 22:36:02 +0000 (23:36 +0100)
- updated year (not yet done everywhere else)
- add files before committing them

commit-jprojects.sh
update-year-jprojects.sh

index 88ec307def8d200c8b96462565b891da7635d86d..48ce900ff5bee48b3762047e7357e838cc0e5bf9 100755 (executable)
@@ -22,6 +22,7 @@ for project in ${LIST}; do
                if [ "$1" = "updated jar(s)" ]
                then
                        # Special commit ... (known-binaries)
                if [ "$1" = "updated jar(s)" ]
                then
                        # Special commit ... (known-binaries)
+                       git add lib/ || exit 255
                        git commit --signoff -S lib/*.jar -m "$1"
                elif [ "$1" = "updated dist.sh" ]
                then
                        git commit --signoff -S lib/*.jar -m "$1"
                elif [ "$1" = "updated dist.sh" ]
                then
@@ -30,10 +31,12 @@ for project in ${LIST}; do
                elif [ -n "$1" -a -n "$2" ]
                then
                        # Regular commit with given message
                elif [ -n "$1" -a -n "$2" ]
                then
                        # Regular commit with given message
+                       git add $2 || exit 255
                        git commit $2 --signoff -S -m "$1" || exit 255
                elif [ -d "$1" -o -f "$1" ]
                then
                        # Limited commit with no message
                        git commit $2 --signoff -S -m "$1" || exit 255
                elif [ -d "$1" -o -f "$1" ]
                then
                        # Limited commit with no message
+                       git add $1 || exit 255
                        git commit $1 --signoff -S || exit 255
                elif [ -n "$1" ]
                then
                        git commit $1 --signoff -S || exit 255
                elif [ -n "$1" ]
                then
index b17436439adaade054345d65bd3935b4e4d3d1cf..ea825545e11f366006d9f437b6efcb6203a7975c 100755 (executable)
@@ -19,8 +19,8 @@ for project in ${LIST}; do
 
        echo "$0: Updating (c) year in '${project}' ..."
        # Update both years when a new year has reached
 
        echo "$0: Updating (c) year in '${project}' ..."
        # Update both years when a new year has reached
-       find */ -type f -print0 | xargs -0 sed -i 's/2020, 2022/2020 - 2023/g'
-       find */ -type f -print0 | xargs -0 sed -i 's/2022 Free Software/2023 Free Software/g'
+       find */ -type f -print0 | xargs -0 sed -i 's/2020, 2023/2020 - 2024/g'
+       find */ -type f -print0 | xargs -0 sed -i 's/2023 Free Software/2024 Free Software/g'
 
        DIFF=$(git diff)
 
 
        DIFF=$(git diff)