1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 11:15:55 +01:00

copyright script never removes authorship

This commit is contained in:
Antonin Portelli 2018-09-01 21:29:58 +01:00
parent 2940c9bcfd
commit b3fa18c229

View File

@ -15,7 +15,12 @@ Copyright (C) 2015-2018
EOF
git log $1 | grep Author | sort -u >> message
git log $1 | grep Author > gitauth
grep 'Author: ' $1 > fileauth
cat gitauth fileauth | sort -u >> message
rm gitauth fileauth
cat >> message <<EOF