diff --git a/.gitignore b/.gitignore index 10c604b0..ce3c22be 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ CMakeCache.txt # Transient in-project-directory dependencies /deps/ /out/build/x64-Debug +/azure-pipelines/deps \ No newline at end of file diff --git a/azure-pipelines/download_install_qt.ps1 b/azure-pipelines/download_install_qt.ps1 index e31b9b7a..37c820f6 100644 --- a/azure-pipelines/download_install_qt.ps1 +++ b/azure-pipelines/download_install_qt.ps1 @@ -2,12 +2,13 @@ $ErrorActionPreference = "Stop" $qli_install_version = '2019.05.26.1' $qt_version = '5.13.0' +$qli_path = $(Split-Path -Parent $PSCommandPath) + '\deps\qli-installer.zip' New-Item -Force -ItemType Directory -Path ".\deps\" Write-Output 'Downloading QLI Installer' $Wc = New-Object System.Net.WebClient -$Wc.DownloadFile("https://github.com/nelsonjchen/qli-installer/archive/v$qli_install_version.zip", '.\deps\qli-installer.zip') ; +$Wc.DownloadFile("https://github.com/nelsonjchen/qli-installer/archive/v$qli_install_version.zip", $qli_path) ; Write-Output 'Downloaded QLI Installer' Write-Output 'Extracting QLI Installer'