From 45fdd125064b3c664590b3a002cf47b4a569f4e6 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 1 Oct 2024 12:16:39 -0700 Subject: [PATCH] Use `-CommandWithArgs` instead of `-cwa` (#2404) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a9d5362a04..f53741b0a3 100644 --- a/README.md +++ b/README.md @@ -1136,11 +1136,11 @@ Note that PowerShell does not handle positional arguments in the same way as other shells, so turning on positional arguments will likely break recipes that use PowerShell. -If using PowerShell 7.4 or better, the `-cwa` flag will make positional -arguments work as expected: +If using PowerShell 7.4 or better, the `-CommandWithArgs` flag will make +positional arguments work as expected: ```just -set shell := ['powershell.exe', '-cwa'] +set shell := ['pwsh.exe', '-CommandWithArgs'] ``` #### Shell