diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-02-24 09:35:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 09:35:49 -0500 |
commit | 42f94a837d1b140e3182100f337e5e0f234c8ce6 (patch) | |
tree | c8b69b4791dc9f59a759e782c37941e82a269638 /python/servo/post_build_commands.py | |
parent | 6aacc9001be072c90bd7e1e554cfda982772cd12 (diff) | |
download | servo-42f94a837d1b140e3182100f337e5e0f234c8ce6.tar.gz servo-42f94a837d1b140e3182100f337e5e0f234c8ce6.zip |
Add missing argument to set_osmesa_env.
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 0311350e273..7df253e4ca3 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -126,7 +126,7 @@ class PostBuildCommands(CommandBase): args = [bin or self.get_nightly_binary_path(nightly) or self.get_binary_path(release, dev)] if headless: - set_osmesa_env(args[0], env) + set_osmesa_env(args[0], env, debugger is not None) args.append('-z') if software: |