fix parsing problem of windows script

This commit is contained in:
Ralf Teusner
2018-07-30 14:35:11 +02:00
parent 7478ef8eff
commit 2c5308d4cd

View File

@ -62,6 +62,7 @@ function get_escaped_file_content ($file){
$content = $content.replace('\', '\\')
$content = $content -replace "`r`n", '\n'
$content = $content -replace "`n", '\n'
$content = $content -replace "`t", '\t'
$content = $content.replace('"', '\"')
return $content
}