mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1358597 - always make Cargo verbose in automation; r=ted.mielczarek
This change brings Cargo closer to what our C/C++ build already does, and some forms of Cargo failure are only diagnosed when you pass `--verbose`, so let's eliminate that extra step for people.
This commit is contained in:
parent
29d29e1c54
commit
15f364135a
@ -914,7 +914,11 @@ cargo_build_flags += --frozen
|
||||
cargo_build_flags += --manifest-path $(CARGO_FILE)
|
||||
ifdef BUILD_VERBOSE_LOG
|
||||
cargo_build_flags += --verbose
|
||||
endif
|
||||
else
|
||||
ifdef MOZ_AUTOMATION
|
||||
cargo_build_flags += --verbose
|
||||
endif # MOZ_AUTOMATION
|
||||
endif # BUILD_VERBOSE_LOG
|
||||
|
||||
# Enable color output if original stdout was a TTY and color settings
|
||||
# aren't already present. This essentially restores the default behavior
|
||||
|
Loading…
Reference in New Issue
Block a user