We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0431135 commit c9e926fCopy full SHA for c9e926f
1 file changed
cargo-auditable/src/rustc_arguments.rs
@@ -87,10 +87,8 @@ pub fn should_embed_audit_data(args: &RustcArgs) -> bool {
87
}
88
89
// --print disables compilation UNLESS --emit is also specified
90
- if !args.print.is_empty() {
91
- if args.emit.is_empty() {
92
- return false;
93
- }
+ if !args.print.is_empty() && args.emit.is_empty() {
+ return false;
94
95
96
true
0 commit comments