Skip to content

Commit e012ecc

Browse files
committed
Powershell doesn't like "shell" commands.
1 parent 22819c2 commit e012ecc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ test_script:
4141
- cmd: conda build conda
4242
- ps: |
4343
if($env:appveyor_repo_tag -eq 'False') {
44-
anaconda upload --user=abergeron $CONDA_LOC\conda-bld\win-64\pygpu*
45-
anaconda upload --user=abergeron $CONDA_LOC\conda-bld\win-64\libgpuarray*
44+
cmd.exe /c "anaconda upload --user=abergeron $CONDA_LOC\conda-bld\win-64\pygpu*"
45+
cmd.exe /c "anaconda upload --user=abergeron $CONDA_LOC\conda-bld\win-64\libgpuarray*"
4646
}

0 commit comments

Comments
 (0)