From 193421969d97a6e28e84776d24000c55ff0d0140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sun, 25 Dec 2016 01:40:29 +0100 Subject: [PATCH] stylo: Copy binding files even if the build failed. It's easier to stash the changes away than to find the generated files. --- 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 54d8b158deb..bd09221d56f 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -434,7 +434,7 @@ class MachCommands(CommandBase): print("GeckoLib build completed in %s" % format_duration(elapsed)) - if with_gecko is not None and ret == 0: + if with_gecko is not None: print("Copying binding files to style/gecko_bindings...") build_path = path.join(geckolib_build_path, "release" if release else "debug", "") target_style_path = find_dep_path_newest("style", build_path)