Skip to content

Commit f8b0fd4

Browse files
committed
Give up on case insensitive.
1 parent 67cb4c9 commit f8b0fd4

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, $true, $null );
16+
$trimmed_val = $trimmed_val.Replace( $replace, $with );
1717
}
1818

1919
function toGitHub {

0 commit comments

Comments
 (0)