From 775392e472933be8d1d76619894efc0671f0c02d Mon Sep 17 00:00:00 2001 From: Jesusalva Jesusalva Date: Fri, 16 Feb 2024 16:40:35 +0000 Subject: Client rebranding: Partly import changes from !28 Co-Authored-By: jak1 Co-Authored-By: jesusalva Co-Authored-By: Fedja Beader --- tools/update-copyright.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'tools/update-copyright.sh') diff --git a/tools/update-copyright.sh b/tools/update-copyright.sh index d681ebb7f..4df05c030 100755 --- a/tools/update-copyright.sh +++ b/tools/update-copyright.sh @@ -2,19 +2,23 @@ # Copyright (C) 2001-2010 Wormux Team. # Copyright (C) 2010 The ManaWorld Development Team. # Copyright (C) 2012-2016 The ManaPlus Developers. +# Copyright (C) 2021-2023 The ManaVerse Developers. cd .. -new_year="$1" -[[ -z $new_year ]] && echo "Missing parameter: year" && exit 1 +if [[ $1 != "" ]]; then + new_year="$1" +else + new_year=$(date +'%Y') +fi -[[ ! -e src ]] && echo "This script should be ran from the top manaplus dir" && exit 2 +[[ ! -e src ]] && echo "This script should be ran from the top manaverse dirs ./tools/ path." && exit 2 tmp_file="w$RANDOM$RANDOM$RANDOM$RANDOM" [[ -e $tmp_file ]] && tmp_file="w$RANDOM$RANDOM$RANDOM$RANDOM" # update the dates, creating the interval if it doesn't exist yet find -iname "*.cpp" -or -iname "*.h" -or -iname "*.hpp" -or -iname "*.inc" -or -iname "*.cc" | - xargs sed -i "/Copyright.*The ManaPlus Developers/ s,\(20[0-9]*\) \|\(20[0-9]*\)-20[0-9]* ,\1\2-$new_year ," + xargs sed -i "/Copyright.*The ManaVerse Developers/ s,\(20[0-9]*\) \|\(20[0-9]*\)-20[0-9]* ,\1\2-$new_year ," # do a semi-automated commit check git diff > $tmp_file -- cgit v1.2.3-70-g09d2