summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-06 21:03:23 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-06 21:03:23 -0400
commit1ffbb873ee28b2f577d53790c9e80154b076fafe (patch)
treedf46d0ec846c44a1be9bac05a1aa35235b0c929e
parenteb4e7b226c5434f551e7b192d0584f0633759339 (diff)
downloadpython-coveragepy-1ffbb873ee28b2f577d53790c9e80154b076fafe.tar.gz
Use proper powershell string concatenation
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index dd2961c..dcdc5d5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -110,7 +110,7 @@ install:
build_script:
- if NOT "%COVERAGE_COVERAGE%" == "yes" %CMD_IN_ENV% %PYTHON%\python setup.py bdist_wheel bdist_wininst
- - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName dist\$_.Name }
+ - ps: Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName ('dist\' + $_.Name) }
test_script:
- "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox"