From e46ae627106993cf1ed3af954fa65b85ae35db89 Mon Sep 17 00:00:00 2001 From: Olli-Pekka Heinisuo Date: Sun, 8 Jan 2017 13:49:16 +0200 Subject: [PATCH] use correct python when uploading artifacts --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 47dcbeb..0c2d3cc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -95,4 +95,4 @@ artifacts: deploy_script: - cd %APPVEYOR_BUILD_FOLDER% -- if "%APPVEYOR_REPO_TAG%"=="true" (python -m twine upload -u %USER% -p %PASS% --skip-existing dist/opencv*) else (echo "Tag not set, deployment skipped.") +- if "%APPVEYOR_REPO_TAG%"=="true" ("%PYTHON%/python.exe" -m twine upload -u %USER% -p %PASS% --skip-existing dist/opencv*) else (echo "Tag not set, deployment skipped.") -- GitLab