Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/Fake.Core.Process/Process.fs
Original file line number Diff line number Diff line change
Expand Up @@ -927,12 +927,12 @@ type Shell private () =
Args = [] }

/// <summary>
/// Runs the given process, waits for it's completion and returns the exit code.
/// Runs the given process, waits for its completion and returns the exit code.
/// </summary>
///
/// <param name="cmd">The command which should be run in elevated context.</param>
/// <param name="args">The process arguments (optional).</param>
/// <param name="directory">The working directory (optional).</param>
/// <param name="dir">The working directory (optional).</param>
static member Exec(cmd, ?args, ?dir) =
Process.shellExec (Shell.GetParams(cmd, ?args = args, ?dir = dir))

Expand All @@ -942,7 +942,7 @@ type Shell private () =
///
/// <param name="cmd">The command which should be run in elevated context.</param>
/// <param name="args">The process arguments (optional).</param>
/// <param name="directory">The working directory (optional).</param>
/// <param name="dir">The working directory (optional).</param>
static member AsyncExec(cmd, ?args, ?dir) =
let internalArgs = Shell.GetParams(cmd, ?args = args, ?dir = dir)

Expand Down
Loading