From a7c03c272e461eb9f44340f0e89b3e661ed3483a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 5 Oct 2025 19:59:27 +0300 Subject: [PATCH] Add back file descriptor flag for 'compile' subcommand --- src/bpm/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bpm/main.go b/src/bpm/main.go index af40a99..f4e8286 100644 --- a/src/bpm/main.go +++ b/src/bpm/main.go @@ -149,6 +149,7 @@ func main() { currentFlagSet.BoolP("depends", "d", false, "Install required dependencies for package compilation") currentFlagSet.BoolP("skip-checks", "s", false, "Skip the check function in source.sh scripts") currentFlagSet.BoolP("output-directory", "o", false, "Set the output directory for the binary packages") + currentFlagSet.Int("output-fd", -1, "Set the file descriptor output package names will be written to") setupFlagsAndHelp(currentFlagSet, fmt.Sprintf("bpm %s ", subcommand), "Compile source packages and convert them to binary ones", os.Args[2:]) compilePackage()