From ee4336a643febe4d06dbb1e6910a828ee08d9368 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Mon, 8 Nov 2021 22:46:59 -0500 Subject: [PATCH] xtask/build_ebpf: fix panic message --- xtask/src/build_ebpf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/build_ebpf.rs b/xtask/src/build_ebpf.rs index 32f28f0..da4dc13 100644 --- a/xtask/src/build_ebpf.rs +++ b/xtask/src/build_ebpf.rs @@ -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(()) }