Skip to content

Commit 4550bc0

Browse files
committed
v2cli: use always-stderr status mode for "show user-cache-dir"
1 parent d12e996 commit 4550bc0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bin/tectonic/v2cli.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,9 @@ impl ShowCommand {
497497
struct ShowUserCacheDirCommand {}
498498

499499
impl ShowUserCacheDirCommand {
500-
fn customize(&self, _cc: &mut CommandCustomizations) {}
500+
fn customize(&self, cc: &mut CommandCustomizations) {
501+
cc.always_stderr = true;
502+
}
501503

502504
fn execute(self, _config: PersistentConfig, _status: &mut dyn StatusBackend) -> Result<i32> {
503505
use tectonic_bundles::cache::Cache;

0 commit comments

Comments
 (0)