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 9e8e007 commit 0015879Copy full SHA for 0015879
src/main/kotlin/com/coder/gateway/cli/CoderCLIManager.kt
@@ -174,6 +174,11 @@ class CoderCLIManager(
174
else -> result as DownloadResult.Downloaded
175
}
176
177
+ if (settings.disableSignatureVerification) {
178
+ downloader.commit()
179
+ logger.info("Skipping over CLI signature verification, it is disabled by the user")
180
+ return true
181
+ }
182
183
var signatureResult = withContext(Dispatchers.IO) {
184
downloader.downloadSignature(showTextProgress)
0 commit comments