Skip to content

Commit

Permalink
Fix script path problem
Browse files Browse the repository at this point in the history
  • Loading branch information
otomad committed Apr 1, 2023
1 parent 7d5aa13 commit 8a58e11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function Update-ToReplaceTextFileOnce {

# Set-Content -Path $file -Value $content -Encoding UTF8
$utf8NoBomEncoding = New-Object Text.UTF8Encoding $False
[IO.File]::WriteAllLines($file, $content, $utf8NoBomEncoding)
[IO.File]::WriteAllLines((Join-Path $pwd $file), $content, $utf8NoBomEncoding)
}

function Update-UndefinedSymbols {
Expand Down Expand Up @@ -76,4 +76,4 @@ for ($i = 0; $i -lt $infos.Count; $i++) {
Rename-Item -Path "release_package_template.zip" -NewName ([String]$i + "_otomad_helper_v" + $version + "_vegas" + [string]$info.VegasVersions + ".zip")
Remove-Item "Otomad Helper.cs"
}
Remove-Item "..\Otomad Helper.cs"
# Remove-Item "..\Otomad Helper.cs"

0 comments on commit 8a58e11

Please sign in to comment.