diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2024-05-04 08:00:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-04 06:00:00 +0000 |
commit | 383607d01e97076283752c880ca6ac7cc6dfa2db (patch) | |
tree | 1c0f4c40f123ee91c8a1791013c37546b8858f96 /python/servo/post_build_commands.py | |
parent | d297eb1f067b02d15479928b2f786663bc5b9ca6 (diff) | |
download | servo-383607d01e97076283752c880ca6ac7cc6dfa2db.tar.gz servo-383607d01e97076283752c880ca6ac7cc6dfa2db.zip |
Do not use crown when building docs (#32220)
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 501dd0237ac..9a17589abc8 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -252,6 +252,7 @@ class PostBuildCommands(CommandBase): params.insert(0, "--keep-going") env = self.build_env() + env["RUSTC"] = "rustc" returncode = self.run_cargo_build_like_command("doc", params, env=env, **kwargs) if returncode: return returncode |