From 104639d39c4d13eb53857392a2138386e66f59dc Mon Sep 17 00:00:00 2001 From: Michal Rostecki <vadorovsky@protonmail.com> Date: Tue, 21 May 2024 14:24:21 +0200 Subject: [PATCH] style: Fix indentation in run.rs --- xtask/src/run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtask/src/run.rs b/xtask/src/run.rs index d0610a6..d50bd11 100644 --- a/xtask/src/run.rs +++ b/xtask/src/run.rs @@ -24,8 +24,8 @@ pub struct Options { /// Build and run the project pub fn run(opts: Options) -> Result<(), anyhow::Error> { - // Build our ebpf program and the project - build(BuildOptions{ + // Build our ebpf program and the project + build(BuildOptions{ bpf_target: opts.bpf_target, release: opts.release, }).context("Error while building project")?;