From 27f52df15c92ef58a3056f3fb8f3e224f14b24dd Mon Sep 17 00:00:00 2001 From: Felix Kauselmann Date: Wed, 20 Nov 2019 16:22:52 +0100 Subject: [PATCH] Azure Pipelines: Fix path environment --- azure-pipelines-windows-template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-windows-template.yml b/azure-pipelines-windows-template.yml index 05a55a77..cd6d226e 100644 --- a/azure-pipelines-windows-template.yml +++ b/azure-pipelines-windows-template.yml @@ -33,7 +33,7 @@ jobs: nmake displayName: 'Build' - script: | - set PATH=C:\Qt\${{ parameters.qt_version }}\${{ parameters.qt_spec }}\bin + set PATH=C:\Qt\${{ parameters.qt_version }}\${{ parameters.qt_spec }}\bin;%PATH% cd $(Build.SourcesDirectory)\ci\win .\create_installer.cmd ${{ parameters.architecture }} 7z $(Build.BuildNumber) displayName: 'Create installer'