summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-26 20:09:29 -0500
committerJeff Carr <[email protected]>2025-10-26 20:09:29 -0500
commit6b70cc1f09163a455a8b85047bf393ea201b46c7 (patch)
tree2c90bcce6c4ed261bbd86b7413d5aafda5b26df7
parent9292d023b97783fc06ca5f21d67a03338ee10913 (diff)
redo for the millionth time
-rw-r--r--Makefile17
-rw-r--r--doBuild.go2
2 files changed, 6 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index fb179e9..9b265b0 100644
--- a/Makefile
+++ b/Makefile
@@ -64,23 +64,16 @@ commit:
merge:
forge merge --all
-deb-with-commits:
- forge commit --all
- forge merge devel
- rm -f ~/incoming/*.deb
- forge commit --all
- forge normal
+debs:
wit build deb
-deb-with-commits-all:
+debs-all:
make commit
- make merge
+ forge merge devel
rm -f ~/incoming/*.deb
- forge commit --all
- forge normal
- wit build deb --all --force
+ wit build deb --all
-deb-with-commits-all-riscv64:
+debs-with-commits-all-riscv64:
make commit
make merge
rm -f ~/incoming/*.deb
diff --git a/doBuild.go b/doBuild.go
index c12b2b6..6a21a9a 100644
--- a/doBuild.go
+++ b/doBuild.go
@@ -99,7 +99,7 @@ func doBuild() (string, error) {
cmd := makeGoDebCmd(repo, newcount, "")
cmdstr := fmt.Sprintf("%v", cmd)
build := "no"
- if (smartver != curver) || repo.CheckDirty() {
+ if (smartver != curver) || repo.CheckDirty() || argv.All {
build = "yes"
repo.DirtyList = cmd
tobuild.Clone(repo)