mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-04 06:03:21 +02:00
build(windows): fix deploy script
Change-Id: I4d7f04365c9753d383a28abd4ec68ce62e80ebff
This commit is contained in:
parent
4fd0c33450
commit
b747b3d8e9
1 changed files with 3 additions and 3 deletions
|
@ -17,13 +17,13 @@ If (test-path $stampFile) {
|
|||
}
|
||||
}
|
||||
|
||||
if (!$outDir) { $outDir = $clientDir + "\x64\" + $mode }
|
||||
If (!(test-path $outDir)) { New-Item -ItemType directory -Path $outDir -Force }
|
||||
|
||||
# default values
|
||||
$qtver = If ($qtver) { $qtver } Else { "5.15.0" }
|
||||
$mode = If ($mode) { $mode } Else { "Release" }
|
||||
|
||||
if (!$outDir) { $outDir = $clientDir + "\x64\" + $mode }
|
||||
If (!(test-path $outDir)) { New-Item -ItemType directory -Path $outDir -Force }
|
||||
|
||||
$qtverSplit1, $qtverSplit2 , $qtverSplit3 = $qtver.Split('.')
|
||||
$qtMsvcDir = "msvc2019_64"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue