Skip to content

Commit

Permalink
fix: add missing comma in PowerShell param block
Browse files Browse the repository at this point in the history
- Corrected the syntax error by adding a missing comma between $crcMemory and $crcBinaryDir parameters.
- Fixed the typo in the HelpMessage for $bundleLocation from "paht" to "path".

Signed-off-by: Rohan Kumar <[email protected]>
  • Loading branch information
rohanKanojia authored and lilyLuLiu committed Mar 3, 2025
1 parent 44a78f3 commit 84513b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/build-e2e/lib/windows/run.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param(
[Parameter(HelpMessage='When testing a custom bundle we should pass the paht on the target host')]
[Parameter(HelpMessage='When testing a custom bundle we should pass the path on the target host')]
$bundleLocation="",
[Parameter(HelpMessage='To set an specific set of tests based on annotations')]
$e2eTagExpression="",
Expand All @@ -8,7 +8,7 @@ param(
[Parameter(HelpMessage='Name for the junit file with the tests results')]
$junitFilename="e2e-junit.xml",
[Parameter(HelpMessage='Customize memory for the cluster to run the tests')]
$crcMemory=""
$crcMemory="",
[Parameter(HelpMessage='Customize crc binary location')]
$crcBinaryDir="C:\Program Files\Red Hat OpenShift Local"
)
Expand Down

0 comments on commit 84513b7

Please sign in to comment.