Skip to content

Commit

Permalink
Fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
VertigoRay committed Jan 24, 2023
1 parent bc03aef commit b4ec7f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ build_script:
- ps: |
$invokePsake = @{
BuildFile = [IO.Path]::Combine($env:APPVEYOR_BUILD_FOLDER, '.build', 'buildPsake.ps1')
TaskList = @('Build')
# TaskList = @('Build')
}
Invoke-psake @invokePsake
if (-not $psake.build_success) {
Expand Down
4 changes: 1 addition & 3 deletions .build/REQUIREMENTS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@
PSCodeCovIo = '1.0.1'
PSMinifier = '1.1.3'
platyPS = @{
RequiredVersion = '0.14.2'
Parameters = @{
Name = 'platyPS'
RequiredVersion = '0.14.2'
AllowClobber = $true
Force = $true
SkipPublisherCheck = $true
}
}
Expand Down
4 changes: 3 additions & 1 deletion .build/buildPsake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,9 @@ task Test {
}

task CodeCov {
& ([IO.Path]::Combine($script:psScriptRootParent.FullName, 'dev', 'codecov.exe'))
Push-Location $script:dev.FullName
& ([IO.Path]::Combine($script:dev.FullName, 'codecov.exe'))
Pop-Location
}

task GitHubTagDelete {
Expand Down

0 comments on commit b4ec7f6

Please sign in to comment.