Skip to content

Commit

Permalink
Minor change to getting started example. (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmds authored Jun 9, 2024
1 parent 2ba77e9 commit 91c6b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ using Tmds.Ssh;

using var sshClient = new SshClient("localhost");
using var process = await sshClient.ExecuteAsync("echo 'hello world!'");
(_, string? line) = await process.ReadLineAsync();
(bool isError, string? line) = await process.ReadLineAsync();
Console.WriteLine(line);
```

Expand Down

0 comments on commit 91c6b21

Please sign in to comment.