Skip to content

Commit

Permalink
Fix incorrect paths
Browse files Browse the repository at this point in the history
  • Loading branch information
manuth committed May 31, 2020
1 parent 5591a3f commit 93fe888
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions appveyor.yml
Expand Up @@ -62,9 +62,10 @@ for:
# Upgrade nyc
- npm i --no-save nyc@15.0.1
- ps: >-
Get-ChildItem -Directory ./resolvers/ |
$resolverDir = ./resolvers
Get-ChildItem -Directory $resolverDir |
ForEach-Object {
Push-Location $_
Push-Location $(Resolve-Path $resolverDir, $_)
npm ls nyc;
if ($?) {
npm i --no-save nyc@15.0.1
Expand Down

0 comments on commit 93fe888

Please sign in to comment.