Skip to content

Commit

Permalink
utils.pwsh: Add current obs-deps version file to Windows packages
Browse files Browse the repository at this point in the history
  • Loading branch information
PatTheMav committed May 25, 2023
1 parent 52a6547 commit cde76a7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Build-Dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,19 @@ function Package-Dependencies {

Remove-Item -ErrorAction 'SilentlyContinue' -Path $Items -Force -Recurse

$Params = @{
ErrorAction = "SilentlyContinue"
Path = @(
"share/obs-deps"
)
ItemType = "Directory"
Force = $true
}

New-Item @Params *> $null

"$(Get-Date -Format "yyyy-MM-dd")" > share/obs-deps/VERSION

Log-Information "Package dependencies"

$Params = @{
Expand Down

0 comments on commit cde76a7

Please sign in to comment.