Skip to content

Commit 0844e77

Browse files
committed
Try again with ignore-case.
1 parent 48790d7 commit 0844e77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/set_output_variable.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $trimArg = "$invovationPath" + "\trim_arg.ps1";
1313
$trimmed_name = & $trimArg -arg $name;
1414
$trimmed_val = & $trimArg -arg $val;
1515
if ( $replace -ne "" ) {
16-
$trimmed_val = $trimmed_val -replace $replace, $with, "IgnoreCase";
16+
$trimmed_val = $trimmed_val.Replace( $replace, $with, "OrdinalIgnoreCase" );
1717
}
1818

1919
function toGitHub {

0 commit comments

Comments
 (0)