We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5837862 commit d9469f2Copy full SHA for d9469f2
scripts/packaging/unitypackage.ps1
@@ -210,6 +210,8 @@ foreach ($entry in $packages.GetEnumerator()) {
210
"-exportPackage $exportPackages " +
211
"-logFile $logFileName"
212
213
+ New-Item -Path $logFileName -ItemType File -Force
214
+
215
# Starts the Unity process, and the waits (and shows output from the editor in the console
216
# while the process is still running.)
217
$proc = Start-Process -FilePath "$unityEditor" -ArgumentList "$unityArgs" -PassThru
@@ -243,4 +245,4 @@ foreach ($entry in $packages.GetEnumerator()) {
243
245
if ($exitCode -ne 0) {
244
246
exit $exitCode
247
}
-}
248
+}
0 commit comments