Skip to content

Commit

Permalink
Add changelog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
pvorb committed Mar 7, 2023
1 parent 5531ace commit db9cd79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

* Converted README and CHANGELOG to Markdown
* Add option to provide additional values files

## Version 2.11.1

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/deviceinsight/helm/PackageMojo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ class PackageMojo : ResolveHelmMojo(), ServerAuthentication {
return
}

val missingFiles = extraValuesFiles.filter { !File(it).exists() }.toList()
val missingFiles = extraValuesFiles.filter { !File(it).exists() }
if (missingFiles.isNotEmpty()) {
throw IllegalStateException("extraValueFiles not found: $missingFiles")
}
Expand Down

0 comments on commit db9cd79

Please sign in to comment.