mirror of
https://github.com/libretro/dolphin
synced 2024-11-03 03:54:37 -05:00
16 lines
714 B
Bash
Executable file
16 lines
714 B
Bash
Executable file
#!/bin/bash
|
|
# Updates a file's license header to the first year a commit touched it.
|
|
# Example: find -name \*.cpp -o -name \*.h|xargs -n1 -P8 /path/to/Tools/update-license-headers.sh
|
|
|
|
filename=$1
|
|
echo "Updating $filename..."
|
|
year=$(git log --diff-filter=A --follow --format=%ad --date=short "$1"|tail -n1|cut -d- -f1)
|
|
if [[ "$(head -n1 "$filename" | grep Copyright)" == "" ]]
|
|
then
|
|
tmp="$(mktemp)"
|
|
echo -e "// Copyright $year Dolphin Emulator Project\n// Licensed under GPLv2+\n// Refer to the license.txt file included.\n"|cat - "$filename" >"$tmp"
|
|
mv "$tmp" "$filename"
|
|
else
|
|
sed -ri "1 s|// Copyright ([0-9-]+) Dolphin Emulator Project|// Copyright $year Dolphin Emulator Project|" "$filename"
|
|
fi
|