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 bcbc98c commit 6f278d4Copy full SHA for 6f278d4
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## Unreleased
4
5
+### Added
6
+
7
+- support for skipping CLI signature verification
8
9
### Changed
10
11
- URL validation is stricter in the connection screen and URI protocol handler
src/main/kotlin/com/coder/toolbox/cli/CoderCLIManager.kt
@@ -181,6 +181,12 @@ class CoderCLIManager(
181
}
182
183
184
+ if (context.settingsStore.disableSignatureVerification) {
185
+ downloader.commit()
186
+ context.logger.info("Skipping over CLI signature verification, it is disabled by the user")
187
+ return true
188
+ }
189
190
var signatureResult = withContext(Dispatchers.IO) {
191
downloader.downloadSignature(showTextProgress)
192
0 commit comments