We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 478a5b1 commit a9a37c5Copy full SHA for a9a37c5
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## Unreleased
4
5
+### Fixed
6
+
7
+- fix class cast exception during signature verification
8
9
## 0.5.1 - 2025-07-21
10
11
### Added
src/main/kotlin/com/coder/toolbox/cli/CoderCLIManager.kt
@@ -277,8 +277,8 @@ class CoderCLIManager(
277
}
278
279
else -> {
280
- UnsignedBinaryExecutionDeniedException((result as Failed).error.message)
281
- val failure = result as DownloadResult.Failed
+ val failure = result as Failed
+ UnsignedBinaryExecutionDeniedException(result.error.message)
282
context.logger.error(failure.error, "Failed to verify signature for ${cliResult.dst}")
283
284
0 commit comments