Skip to content

Commit

Permalink
fix case issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ywchang committed Feb 27, 2013
1 parent 0a893f6 commit 97e8d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generate-po.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Function Get-Files {

Function Test-IsExcluded($path){
foreach($excludeFolder in $excludeFolders){
if ($path.StartsWith($excludeFolder)) {
if ($path.StartsWith($excludeFolder, [System.StringComparison]::InvariantCultureIgnoreCase)) {
return $true
}
}
Expand Down
2 changes: 1 addition & 1 deletion pack-nuget.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"src\.nuget\NuGet.exe" pack i18n.nuspec -version 1.0.6.8 -NoPackageAnalysis
".nuget\NuGet.exe" pack i18n.nuspec -version 1.0.6.12 -NoPackageAnalysis

0 comments on commit 97e8d50

Please sign in to comment.