Skip to content

Commit e6f8d92

Browse files
committed
Removed single quotes from ms.prod value
1 parent ec596e4 commit e6f8d92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/MsProdUpdate.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,9 @@ function WebScrapping {
224224
$MsprodContent = $Content
225225
}
226226
}
227-
#Remove double qoutes from ms prod
227+
#Remove single and double qoutes from ms prod
228228
$MsprodContent = $MsprodContent.Replace("`"","")
229+
$MsprodContent = $MsprodContent.Replace("'","")
229230
$MetaDataText = "schema: 2.0.0`r`n$MsprodContent"
230231
(Get-Content $File) |
231232
Foreach-Object { $_ -replace 'schema: 2.0.0', $MetaDataText } |

0 commit comments

Comments
 (0)