Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fd860d1

Browse files
committedMar 27, 2025·
impl: enable wildcard config by default
1 parent a53684d commit fd860d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/main/kotlin/com/coder/toolbox/store/CoderSettingsStore.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class CoderSettingsStore(
3737
altHostname = store[TLS_ALTERNATE_HOSTNAME]
3838
),
3939
disableAutostart = store[DISABLE_AUTOSTART]?.toBooleanStrictOrNull() ?: (getOS() == OS.MAC),
40-
isSshWildcardConfigEnabled = store[ENABLE_SSH_WILDCARD_CONFIG]?.toBooleanStrictOrNull() ?: false,
40+
isSshWildcardConfigEnabled = store[ENABLE_SSH_WILDCARD_CONFIG]?.toBooleanStrictOrNull() ?: true,
4141
sshConfigPath = store[SSH_CONFIG_PATH].takeUnless { it.isNullOrEmpty() }
4242
?: Path.of(System.getProperty("user.home")).resolve(".ssh/config").normalize().toString(),
4343
sshLogDirectory = store[SSH_LOG_DIR],

0 commit comments

Comments
 (0)
Please sign in to comment.