HomeWildfire Games

Make all Wildfire Games copyright headers consistent by always ending with a…

Description

Make all Wildfire Games copyright headers consistent by always ending with a period and using (C) instead of (c).

Differential Revision: https://code.wildfiregames.com/D716
Refs rP19503
Reviewed By: bb
Change in agreement with leper.

Details

Committed
elexisJul 10 2017, 4:26 PM
Reviewer
bb
Differential Revision
D716: Copyright header consistency
Parents
rP19898: [i18n] Updated POT and PO files.
Branches
Unknown
Tags
Unknown
Build Status
Buildable 2575
Build 4359: Trigger Windows Autobuild
Build 4358: Post-Commit BuildJenkins

Event Timeline

leper added inline comments.
/ps/trunk/libraries/source/fcollada/src/FCollada/FUtils/FUAssert.cpp
4

Don't change someone else's copyright line.

/ps/trunk/source/tools/i18n/extractors/jslexer.py
3

Same here.

Thanks. Those two are the only occurances:

cat file | grep ^+ | grep -v ^+++ | grep -v Wildfire

(Yes one can grep without prior cat, but most often I first cat the file to decide what I'm going to grep for)

(Yes one can grep without prior cat, but most often I first cat the file to decide what I'm going to grep for)

Useless use of cat is something to avoid when writing a script, for actually figuring out what to do I tend to do similar things, though I tend to start with a recursive grep most of the time (then pipe that to a few more grep instances, even though one could just pass that to the first one...).