summaryrefslogtreecommitdiff
path: root/.azure-pipelines/posix-steps.yml
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2018-09-24 09:03:02 -0400
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-09-24 06:03:02 -0700
commit1b77f929f8d18e9a97335a8ec5e838e5be506568 (patch)
tree3fd9cbcaa817c2af5f8819c79844eff75721d4ee /.azure-pipelines/posix-steps.yml
parent680d26e3b6b3fcd2deadd392d837325e2d1bb652 (diff)
downloadcpython-git-1b77f929f8d18e9a97335a8ec5e838e5be506568.tar.gz
bpo-34582: Fixes Python version used for patch check (GH-9532)
https://bugs.python.org/issue34582
Diffstat (limited to '.azure-pipelines/posix-steps.yml')
-rw-r--r--.azure-pipelines/posix-steps.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines/posix-steps.yml b/.azure-pipelines/posix-steps.yml
index 429381a7e2..9fec9be801 100644
--- a/.azure-pipelines/posix-steps.yml
+++ b/.azure-pipelines/posix-steps.yml
@@ -48,7 +48,7 @@ steps:
displayName: 'Tests'
-- script: python Tools/scripts/patchcheck.py --travis true
+- script: ./python Tools/scripts/patchcheck.py --travis true
displayName: 'Run patchcheck.py'
condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))