xtask/build_ebpf: fix panic message

pull/20/head
William Findlay 3 years ago
parent d590d3a1ea
commit ee4336a643
No known key found for this signature in database
GPG Key ID: 7162B44E9E560373

@ -56,7 +56,7 @@ pub fn build_ebpf(opts: Options) -> Result<(), anyhow::Error> {
.current_dir(&dir)
.args(&args)
.status()
.expect("failed to build bpf examples");
.expect("failed to build bpf program");
assert!(status.success());
Ok(())
}

Loading…
Cancel
Save