in src/main/kotlin/org/jetbrains/tinygoplugin/sdk/TinyGoSdkChooserCombo.kt [118:125]
override fun validateSelectedFiles(files: Array<out VirtualFile>) {
if (files.isNotEmpty()) {
val valid = checkDirectoryForTinyGo(files[0])
if (!valid) {
throw IllegalArgumentException(TinyGoBundle.message(TINYGO_LOCAL_ERROR_INVALID_DIR))
}
}
}