mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01:00
Auto merge of #24226 - paulrouget:openxrup, r=jdm
OpenXR loader update Fix #24181 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/24226) <!-- Reviewable:end -->
This commit is contained in:
commit
540a73ed29
5 changed files with 33 additions and 41 deletions
|
@ -729,6 +729,26 @@ class MachCommands(CommandBase):
|
|||
print('Removing virtualenv directory: %s' % virtualenv_path)
|
||||
shutil.rmtree(virtualenv_path)
|
||||
|
||||
uwp_artifacts = [
|
||||
"support/hololens/x64/",
|
||||
"support/hololens/ARM/",
|
||||
"support/hololens/ARM64/",
|
||||
"support/hololens/ServoApp/x64/",
|
||||
"support/hololens/ServoApp/ARM/",
|
||||
"support/hololens/ServoApp/ARM64/",
|
||||
"support/hololens/ServoApp/Generated Files/",
|
||||
"support/hololens/ServoApp/BundleArtifacts/",
|
||||
"support/hololens/ServoApp/support/",
|
||||
"support/hololens/ServoApp/Debug/",
|
||||
"support/hololens/ServoApp/Release/",
|
||||
"support/hololens/packages/",
|
||||
]
|
||||
|
||||
for uwp_artifact in uwp_artifacts:
|
||||
dir_path = path.join(self.get_top_dir(), uwp_artifact)
|
||||
if path.exists(dir_path):
|
||||
shutil.rmtree(dir_path)
|
||||
|
||||
opts = ["--manifest-path", manifest_path or path.join(self.context.topdir, "Cargo.toml")]
|
||||
if verbose:
|
||||
opts += ["-v"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue