Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wbonbon committed Aug 18, 2024
1 parent 6038bb3 commit 2194c08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/ACT.Hojoring.Common/split.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ try {
if ($line -match "00:0039::戦闘開始!") {
$copying = $true

$fileName = $inputFile.Substring(10, 10) + "_" + $line.Substring(1, 2) + $line.Substring(4, 2) + $line.Substring(7, 2) + ".log"
$outputFile = ".\" + $fileName
$fileName = $inputFile.Substring(0, $inputFile.Length-4) + "." + $line.Substring(1, 2) + $line.Substring(4, 2) + $line.Substring(7, 2) + ".log"
$outputFile = $fileName

Write-Host $outputFile
Write-Host $line
Expand Down

0 comments on commit 2194c08

Please sign in to comment.