Skip to content
代码片段 群组 项目
提交 72193ecc 编辑于 作者: Faryan Rezagholi's avatar Faryan Rezagholi
浏览文件

appveyor fix

上级 7eb85c6a
分支
未找到相关标签
无相关合并请求
......@@ -20,6 +20,15 @@ $exe = Join-Path -Path $TargetDir -ChildPath $TargetFileName
$Version = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($exe).FileVersion
Write-Output "Version is $($version)"
# Fix for AppVeyor
if(!([string]::IsNullOrEmpty($Env:APPVEYOR_BUILD_FOLDER))) {
$path = "Release"
If(!(test-path $path))
{
New-Item -ItemType Directory -Force -Path $path
}
}
# Package debug symbols zip file
if ($ConfigurationName -match "Release") {
Write-Output "Packaging debug symbols"
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
想要评论请 注册