remove jsonfile.

change running codepage (432 -> 437).
This commit is contained in:
2017-10-16 18:46:20 +09:00
parent c57dfad3b2
commit bc52b169af

View File

@ -4,7 +4,7 @@ function read_conf($filename)
{
$lines = get-content $filename
foreach($line in $lines){
# コメントと空行を除外する
# Remove comments and blank lines.
if($line -match "^$"){ continue }
if($line -match "^\s*;"){ continue }