diff options
author | jak1 <jak1@themanaworld.org> | 2023-01-08 16:04:48 +0100 |
---|---|---|
committer | jak1 <jak1@themanaworld.org> | 2023-01-08 16:05:53 +0100 |
commit | bc745ae9b9f623b53f176a63077e192c4586e8f7 (patch) | |
tree | 68063c8ac54d7c904bedf1ef22091e3b8a51f845 /tools | |
parent | a58d101f8b261313bc95c96ade691073aee1ffca (diff) | |
download | manaplus-bc745ae9b9f623b53f176a63077e192c4586e8f7.tar.gz manaplus-bc745ae9b9f623b53f176a63077e192c4586e8f7.tar.bz2 manaplus-bc745ae9b9f623b53f176a63077e192c4586e8f7.tar.xz manaplus-bc745ae9b9f623b53f176a63077e192c4586e8f7.zip |
added manaverse' copyright line to src/
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/update-copyright.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/update-copyright.sh b/tools/update-copyright.sh index d681ebb7f..3c6673f57 100755 --- a/tools/update-copyright.sh +++ b/tools/update-copyright.sh @@ -4,17 +4,20 @@ # Copyright (C) 2012-2016 The ManaPlus 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 manaplus 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 |