From 623b8009866208b4850baaae9559d9b10e389a6e Mon Sep 17 00:00:00 2001 From: thosoo Date: Tue, 3 Oct 2023 13:35:00 +0200 Subject: [PATCH] Update bump.ps1 --- bump.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bump.ps1 b/bump.ps1 index 9625e83..8a77579 100644 --- a/bump.ps1 +++ b/bump.ps1 @@ -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 $appinfo -Force -Encoding ASCII -Pretty -FilePath $appinfoFilePath $installerFilePath = ".\VSCodiumPortable\App\AppInfo\installer.ini" if (Test-Path $installerFilePath) { @@ -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 $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 }