diff options
| author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2016-09-29 04:26:50 -0400 |
|---|---|---|
| committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2016-09-29 04:29:32 -0400 |
| commit | b5ea899644e9d7211328cf6185badddc2cfec2a9 (patch) | |
| tree | 21a6c035296e75e1927c918a3729a861be08863f | |
| parent | 063c689a3f8ad490cf01e8d52f26b6509d67ff72 (diff) | |
| download | meson-b5ea899644e9d7211328cf6185badddc2cfec2a9.tar.gz | |
Fix PATH setting in AppVeyor.
Without the trailing semicolon, an errant space is inserted into the
last directory entry.
| -rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index b60540266..38ebe561d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,7 @@ build_script: - cmd: echo No build step. test_script: - - cmd: PATH c:\python34;%PATH% && python3 run_tests.py --backend=ninja + - cmd: PATH c:\python34;%PATH%; && python3 run_tests.py --backend=ninja on_finish: - appveyor PushArtifact meson-test-run.txt -DeploymentName "Text test logs" |
