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 a2bb458 commit 805261cCopy full SHA for 805261c
scripts/packaging/createupmpackages.ps1
@@ -163,6 +163,11 @@ foreach ($entry in $packages.GetEnumerator()) {
163
Remove-Item -Path $samplesFolder -Recurse -Force
164
}
165
166
+ if ($packageName -eq "foundation") {
167
+ # The foundation package MOVES some content around. This restores the moved files.
168
+ Start-Process -FilePath "git" -ArgumentList "checkout Services/SceneSystem/SceneSystemResources*" -NoNewWindow -Wait
169
+ }
170
+
171
# Delete the renamed package.json.* files
172
Remove-Item -Path "$packagePath/package.json"
173
Remove-Item -Path "$packagePath/package.json.meta"
0 commit comments