X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/abc086c715d231160badf9078368d190e47a9028..ea74f5d95928a521a588737e81f1de94eef25d19:/tools/internal/update_copyright_header diff --git a/tools/internal/update_copyright_header b/tools/internal/update_copyright_header index e68449192d..b8525fc9e8 100755 --- a/tools/internal/update_copyright_header +++ b/tools/internal/update_copyright_header @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# Copyright (c) 2014. The SimGrid Team. +# Copyright (c) 2014-2022. The SimGrid Team. # All rights reserved. # This program is free software; you can redistribute it and/or modify it @@ -35,7 +35,7 @@ get_dates() { s/[, ]\+/\n/g p }' "$file" \ - | while read date; do + | while read -r date; do case "$date" in "") ;; @@ -54,9 +54,9 @@ format_dates() { local first local last local next - read first + read -r first last=$first - while read next; do + while read -r next; do if [ $next -eq $((last + 1)) ]; then last=$next else @@ -89,7 +89,7 @@ for file; do continue fi - if grep -q "Copyright.*SimGrid" $file ; then + if grep -q "Copyright.*SimGrid" $file ; then if head -n 1 "$file" | grep -q '^#!'; then script=1 else @@ -128,7 +128,7 @@ for file; do cat "$tmp_head" "$tmp_copy" "$tmp_foot" > $file else echo "Pass: there is no SimGrid Copyright header." - fi ; # + fi ; # done cat <