Skip to content

Commit

Permalink
Meaningful error message if gn can't be run (denoland#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
cafce25 committed Nov 27, 2022
1 parent 3c6d259 commit 9a0a6bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ pub fn maybe_gen(manifest_dir: &str, gn_args: GnArgs) -> PathBuf {
.stderr(Stdio::inherit())
.envs(env::vars())
.status()
.unwrap()
.expect("Coud not run `gn`")
.success());
}
gn_out_dir
Expand Down

0 comments on commit 9a0a6bc

Please sign in to comment.