Failed2build #1
This commit is contained in:
parent
3540892040
commit
8ac499b4ab
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue