Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
change childprocessservice
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 12, 2024
1 parent 02215ca commit 046307b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OneWare.Essentials/Services/IChildProcessService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace OneWare.Essentials.Services;

public interface IChildProcessService
{
public Task<(bool success, string output)> ExecuteShellAsync(string path, string arguments, string workingDirectory,
public Task<(bool success, string output)> ExecuteShellAsync(string path, IReadOnlyCollection<string> arguments, string workingDirectory,
string status, AppState state = AppState.Loading, bool showTimer = false, Action<string>? outputAction = null,
Func<string, bool>? errorAction = null);
}

0 comments on commit 046307b

Please sign in to comment.