From 48f7e2a421f095a27e9af5009e6c512cb9258a3d Mon Sep 17 00:00:00 2001 From: hariprakaz Date: Wed, 4 Mar 2026 00:16:56 +0530 Subject: [PATCH] Remove -d alias from --deep to fix conflict with --debug (Fixes #3074) --- source/dub/commandline.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dub/commandline.d b/source/dub/commandline.d index 21e853593..96cafae9e 100644 --- a/source/dub/commandline.d +++ b/source/dub/commandline.d @@ -1558,7 +1558,7 @@ class BuildCommand : GenerateCommand { args.getopt("n|non-interactive", &m_nonInteractive, [ "Don't enter interactive mode." ]); - args.getopt("d|deep", &m_deep, [ + args.getopt("deep", &m_deep, [ "Build all dependencies, even when main target is a static library." ]); super.prepare(args);