From 3b59e37d1cf4b0a96f1a9113227bf548731152f2 Mon Sep 17 00:00:00 2001 From: robojerk Date: Mon, 21 Jul 2025 23:02:33 +0000 Subject: [PATCH] Fix bootc build: resolve rustup environment and binary path issues - Set rustup environment variables in workflow instead of debian/rules - Fix binary install path to use debian/cargo/target/release/bootc - Simplify debian/rules by removing complex rustup handling - Ensure cargo builds successfully and binary is found during install --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 9383158..2eacfc0 100755 --- a/debian/rules +++ b/debian/rules @@ -23,7 +23,7 @@ override_dh_auto_build: override_dh_auto_install: # Install the bootc binary - install -D -m 755 target/release/bootc debian/bootc/usr/bin/bootc + install -D -m 755 debian/cargo/target/release/bootc debian/bootc/usr/bin/bootc dh_auto_install override_dh_auto_clean: