Skip to content

Commit

Permalink
Fix build script's generation of the copyright symbol.
Browse files Browse the repository at this point in the history
  • Loading branch information
plioi committed Jun 8, 2016
1 parent 9d09a50 commit daeb0d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
The MIT License (MIT)
Copyright © 2011-2016 Patrick Lioi
Copyright © 2011-2016 Patrick Lioi

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function get-copyright {
$date = Get-Date
$year = $date.Year
$copyrightSpan = if ($year -eq $birthYear) { $year } else { "$birthYear-$year" }
return "Copyright © $copyrightSpan $maintainers"
return "Copyright © $copyrightSpan $maintainers"
}

function regenerate-file($path, $newContent) {
Expand Down
2 changes: 1 addition & 1 deletion src/Parsley.Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyVersion("0.0.7")]
[assembly: AssemblyFileVersion("0.0.7")]
[assembly: AssemblyInformationalVersion("0.0.7")]
[assembly: AssemblyCopyright("Copyright © 2011-2016 Patrick Lioi")]
[assembly: AssemblyCopyright("Copyright © 2011-2016 Patrick Lioi")]
[assembly: AssemblyCompany("Patrick Lioi")]
[assembly: AssemblyConfiguration("Release")]
2 changes: 1 addition & 1 deletion src/Parsley/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyVersion("0.0.7")]
[assembly: AssemblyFileVersion("0.0.7")]
[assembly: AssemblyInformationalVersion("0.0.7")]
[assembly: AssemblyCopyright("Copyright © 2011-2016 Patrick Lioi")]
[assembly: AssemblyCopyright("Copyright © 2011-2016 Patrick Lioi")]
[assembly: AssemblyCompany("Patrick Lioi")]
[assembly: AssemblyConfiguration("Release")]

0 comments on commit daeb0d2

Please sign in to comment.