diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 21:03:23 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-06 21:03:23 -0400 |
commit | b1ef1f6485b0fb0d5249d5eef18899295b863b5b (patch) | |
tree | afc10f52e6f77dad06bcb990ecce7fe0b2e77278 | |
parent | 5236f0709c15b2ba0527b5a42dd156bf3ae3a10b (diff) | |
download | python-coveragepy-git-b1ef1f6485b0fb0d5249d5eef18899295b863b5b.tar.gz |
Use proper powershell string concatenation
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index dd2961c3..dcdc5d52 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" |