Skip to content

Commit

Permalink
Update bump.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
thosoo authored Oct 3, 2023
1 parent 623b800 commit 1876ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bump.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if ((Test-Path $appinfoFilePath) -and (Get-IniContent $appinfoFilePath).Version.
PackageVersion = "$tag.0"
}
}
Out-IniFile $appinfo -Force -Encoding ASCII -Pretty -FilePath $appinfoFilePath
Out-IniFile -InputObject $appinfo -Force -Encoding ASCII -Pretty -FilePath $appinfoFilePath

$installerFilePath = ".\VSCodiumPortable\App\AppInfo\installer.ini"
if (Test-Path $installerFilePath) {
Expand All @@ -43,7 +43,7 @@ if ((Test-Path $appinfoFilePath) -and (Get-IniContent $appinfoFilePath).Version.
Download2Filename = $download2Filename
}
}
Out-IniFile $installer -Force -Encoding ASCII -Pretty -FilePath $installerFilePath
Out-IniFile -InputObject $installer -Force -Encoding ASCII -Pretty -FilePath $installerFilePath
Write-Host "Bumped to $tag"
Write-Output "SHOULD_COMMIT=yes" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
}
Expand Down

0 comments on commit 1876ec5

Please sign in to comment.