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 2c348ef commit d0c61daCopy full SHA for d0c61da
sshdconfig/locales/en-us.toml
@@ -25,7 +25,7 @@ defaultShellMustBeString = "shell must be a string"
25
windowsOnly = "Microsoft.OpenSSH.SSHD/Windows is only applicable to Windows"
26
27
[main]
28
-export = "Export"
+export = "Export command: %{input}"
29
schema = "Schema command:"
30
set = "Set command: '%{input}'"
31
sshdconfig/src/main.rs
@@ -35,6 +35,7 @@ fn main() {
35
36
let result = match &args.command {
37
Command::Export { input } => {
38
+ debug!("{}: {:?}", t!("main.export").to_string(), input);
39
match build_command_info(input.as_ref(), false) {
40
Ok(cmd_info) => get_sshd_settings(&cmd_info, false),
41
Err(e) => Err(e),
0 commit comments