Skip to content

Commit a5f37b9

Browse files
committed
Try run() instead of command_output()
1 parent f264679 commit a5f37b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/tools/run-make-support/src

src/tools/run-make-support/src/llvm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ impl LlvmFilecheck {
118118
/// Construct a new `llvm-filecheck` invocation. This assumes that `llvm-filecheck` is available
119119
/// at `$LLVM_FILECHECK`.
120120
pub fn new() -> Self {
121-
let llvm_filecheck = env_var("LLVM_FILECHECK").expect("LLVM_FILECHECK env var not specified");
121+
let llvm_filecheck = env_var("LLVM_FILECHECK");
122122
let cmd = Command::new(llvm_filecheck);
123123
Self { cmd }
124124
}

0 commit comments

Comments
 (0)