From 0a1cb978e85dabed2e8feba2181e9627c7ba7ab0 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 22 Feb 2025 03:40:49 -0600 Subject: allow building just changed packages --- findNext.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'findNext.go') diff --git a/findNext.go b/findNext.go index 8fa6591..c920fd8 100644 --- a/findNext.go +++ b/findNext.go @@ -125,7 +125,11 @@ func findNext() bool { log.Info("cd", wit.GetFullPath()) os.Chdir(wit.GetFullPath()) shell.Exec([]string{"ls", "-l"}) - shell.Exec([]string{"make", "debian-release-force"}) + if argv.Full { + shell.Exec([]string{"make", "debian-release-force"}) + } else { + shell.Exec([]string{"make", "debian-release"}) + } } okExit("") } -- cgit v1.2.3