Browse Source

Added call operator to Do-DocFX invocation

pull/46/head
Anairkoen Schno 5 years ago
parent
commit
2d43d7d30e
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      appveyor.yml

+ 4
- 4
appveyor.yml View File

@ -90,9 +90,9 @@ before_deploy:
if ($env:APPVEYOR_REPO_TAG -eq "true") if ($env:APPVEYOR_REPO_TAG -eq "true")
{ # Copy current site into tags { # Copy current site into tags
Do-DocFX "-o origin_site/tags"
& Do-DocFX "-o origin_site/tags"
Git-Do
& Git-Do
cd origin_site # make things a bit easier cd origin_site # make things a bit easier
@ -108,9 +108,9 @@ before_deploy:
} }
elseif (-Not $env:APPVEYOR_PULL_REQUEST_TITLE) elseif (-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{ # Generate docs { # Generate docs
Do-DocFX ""
& Do-DocFX ""
Git-Do
& Git-Do
Move-Item origin_site/.git _site Move-Item origin_site/.git _site
Move-Item origin_site/tags _site Move-Item origin_site/tags _site


Loading…
Cancel
Save