From 67f59f5caef401a1503e2b3ef9a850636e2bb43a Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Wed, 4 Sep 2019 13:25:13 -0700 Subject: [PATCH] Don't run msbuild if packaging failed --- python/servo/build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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":