Skip to content

Commit

Permalink
[fix] case sensitivity updating
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzy-ax committed Apr 28, 2019
1 parent a9cbfe1 commit 726fc64
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the [project](https://github.com/mazzy-ax/Update-Lbi) will be documented in this file. See also <https://github.com/mazzy-ax/Update-Lbi/releases>.

## [0.5.0](https://github.com/mazzy-ax/Update-Lbi/compare/v0.4.1...v0.5.0) - 2019-04-28

* Fix bug with case sensitivity: `Update-Lbi` uses case sensitivity check while update a content.

## [0.4.1](https://github.com/mazzy-ax/Update-Lbi/compare/v0.4.0...v0.4.1) - 2019-01-08

* Fix bug #2 with extra space
Expand Down
2 changes: 1 addition & 1 deletion Update-Lbi/Internal/Update-LibItem.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function Update-LibItem {
Update-HtmlFragment -UseCachedLbiOnly:$UseCachedLbiOnly |
Merge-HtmlFragment

if ( $HtmlSource -ne $HtmlResult ) {
if ( $HtmlSource -cne $HtmlResult ) {
$HtmlResult | Out-File -FilePath $File -Encoding UTF8 -NoNewline -Force:$Force
}
}
Expand Down

0 comments on commit 726fc64

Please sign in to comment.