Failed2build #1

This commit is contained in:
Spyros Psarras 2021-07-30 02:03:47 +02:00
parent 3540892040
commit 8ac499b4ab
1 changed files with 2 additions and 2 deletions

View File

@ -2,13 +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'
$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", $qli_path) ;
$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'