Skip to content

Commit ab3b00d

Browse files
committed
Try run() instead of command_output()
1 parent b16264a commit ab3b00d

File tree

1 file changed

+1
-1
lines changed
  • src/tools/run-make-support/src

1 file changed

+1
-1
lines changed

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

+1-1
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)