diff options
| author | Jeff Carr <[email protected]> | 2025-10-26 20:09:29 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-26 20:09:29 -0500 |
| commit | 6b70cc1f09163a455a8b85047bf393ea201b46c7 (patch) | |
| tree | 2c90bcce6c4ed261bbd86b7413d5aafda5b26df7 | |
| parent | 9292d023b97783fc06ca5f21d67a03338ee10913 (diff) | |
redo for the millionth time
| -rw-r--r-- | Makefile | 17 | ||||
| -rw-r--r-- | doBuild.go | 2 |
2 files changed, 6 insertions, 13 deletions
@@ -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 @@ -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) |
