diff options
Diffstat (limited to 'python/servo/platform/base.py')
-rw-r--r-- | python/servo/platform/base.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/servo/platform/base.py b/python/servo/platform/base.py index eee42428e56..39d7ae5f293 100644 --- a/python/servo/platform/base.py +++ b/python/servo/platform/base.py @@ -102,8 +102,8 @@ class Base: if not force and shutil.which("taplo") is not None: return False - if subprocess.call(["cargo", "install", "taplo-cli", "--locked"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE) != 0: + print(" * Installing taplo...") + if subprocess.call(["cargo", "install", "taplo-cli", "--locked"]) != 0: raise EnvironmentError("Installation of taplo failed.") return True @@ -114,8 +114,8 @@ class Base: env = dict(os.environ) env["CARGO_BUILD_RUSTC"] = "rustc" - if subprocess.call(["cargo", "install", "--path", "support/crown"], - stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env) != 0: + print(" * Installing crown (the Servo linter)...") + if subprocess.call(["cargo", "install", "--path", "support/crown"], env=env) != 0: raise EnvironmentError("Installation of crown failed.") return True |