From 245374f6cff6452a11f0f3fe3a2d8d47e78110fd Mon Sep 17 00:00:00 2001 From: Matti Airas Date: Sat, 22 Nov 2025 00:59:30 +0200 Subject: [PATCH] fix(ci): correct docker-build-deb command reference MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docker-build-deb function was calling non-existent build-deb-only. Changed to call build-deb which is the actual function name. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run b/run index d54e38d..61a2239 100755 --- a/run +++ b/run @@ -116,7 +116,7 @@ function docker-build-deb { # Use Docker container for Debian packaging echo "🐳 Running Debian packaging in Docker container..." export DIR_NAME=$(basename "$PWD") - debtools ./run build-deb-only + debtools ./run build-deb echo "✅ Docker-based Debian package built successfully" }