diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/appveyor.yml b/appveyor.yml index f30e0b04f..ddb40d297 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -44,20 +44,20 @@ init: # installation scripts to run install: - - ps: .\dist\appveyor\install.ps1 - - ps: .\dist\appveyor\info.ps1 + - ps: .\dist\windows\appveyor\install.ps1 + - ps: .\dist\windows\appveyor\info.ps1 # Build flow # -------------------------------------- # scripts to run before builds before_build: - - ps: .\dist\appveyor\configure.ps1 + - ps: .\dist\windows\appveyor\configure.ps1 # Disable MSBuild build: off # build scripts to run build_script: - - ps: .\dist\appveyor\build.ps1 + - ps: .\dist\windows\appveyor\build.ps1 # scripts to run after builds #after_build: @@ -66,11 +66,11 @@ build_script: # -------------------------------------- # scripts to run before tests before_test: - - ps: .\dist\appveyor\setup.ps1 + - ps: .\dist\windows\appveyor\setup.ps1 # test scripts to run test_script: - - ps: .\dist\appveyor\test.ps1 + - ps: .\dist\windows\appveyor\test.ps1 # scripts to run after tests #after_test: |