aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2019-09-04 13:25:13 -0700
committerManish Goregaokar <manishsmail@gmail.com>2019-09-04 13:37:17 -0700
commit67f59f5caef401a1503e2b3ef9a850636e2bb43a (patch)
tree6082a108667266d18f974827b7d9d8b7555ebe5a /python/servo/build_commands.py
parent92bddf081da57da55c575afbcb166a26e7954f72 (diff)
downloadservo-67f59f5caef401a1503e2b3ef9a850636e2bb43a.tar.gz
servo-67f59f5caef401a1503e2b3ef9a850636e2bb43a.zip
Don't run msbuild if packaging failed
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 4a268d2d713..5c5cacdc48f 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -699,7 +699,7 @@ class MachCommands(CommandBase):
status = 1
# UWP build hololens
- if uwp:
+ if uwp and status == 0:
build_uwp_hololens(target_triple, dev, msbuildinstalldir)
elif sys.platform == "darwin":