aboutsummaryrefslogtreecommitdiff
path: root/src/Constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/Constants')
-rw-r--r--src/Constants/Utils.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Constants/Utils.cs b/src/Constants/Utils.cs
index 6047c35..80e8ceb 100644
--- a/src/Constants/Utils.cs
+++ b/src/Constants/Utils.cs
@@ -20,7 +20,12 @@ namespace VNLib.Tools.Build.Executor.Constants
/// <param name="process">The name of the process to run</param>
/// <param name="args">CLI arguments to pass to the process</param>
/// <returns>The process exit code</returns>
- public static async Task<int> RunProcessAsync(string process, string? workingDir, string[] args, IReadOnlyDictionary<string, string>? env = null)
+ public static async Task<int> RunProcessAsync(
+ string process,
+ string? workingDir,
+ string[] args,
+ IReadOnlyDictionary<string, string>? env = null
+ )
{
//Init new console cancellation token
using ConsoleCancelToken ctToken = new();