This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -74,12 +74,14 @@ test:
74
74
- DoNotRunOnAppVeyor
75
75
on_success :
76
76
- ps : |
77
+ Set-Location $env:appveyor_build_folder
77
78
if ($package) {
78
79
$sourcedir="$($env:appveyor_build_folder)\unity\PackageProject"
79
80
Get-ChildItem -Recurse "$($sourcedir)\*.pdb" | foreach { $_.fullname.substring(0, $_.fullname.length - $_.extension.length) } | foreach { Write-Output "Generating $($_).mdb"; & 'lib\pdb2mdb.exe' "$($_).dll" }
80
81
}
81
82
- if %BUILD_TYPE%==full cd %appveyor_build_folder%\submodules\packaging\unitypackage && node yarn.js start --path %appveyor_build_folder%\unity\PackageProject --out %appveyor_build_folder% --file github-for-unity-%package_version%
82
83
- ps : |
84
+ Set-Location $env:appveyor_build_folder
83
85
if ($package) {
84
86
$sourcedir="$($env:appveyor_build_folder)\unity\PackageProject"
85
87
$zipfile="$($env:appveyor_build_folder)\github-for-unity-$($env:package_version).zip"
@@ -97,4 +99,6 @@ on_success:
97
99
Push-AppveyorArtifact "$($packagefile).md5" -DeploymentName package
98
100
}
99
101
on_finish :
100
- - ps : Get-ChildItem build\*.log | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
102
+ - ps : |
103
+ Set-Location $env:appveyor_build_folder
104
+ Get-ChildItem build\*.log | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
You can’t perform that action at this time.
0 commit comments