summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-13 13:17:26 -0600
committerJeff Carr <[email protected]>2024-12-13 13:17:26 -0600
commit6ea78a6e8ba73e98a396e03b9231bd2d6a9a5288 (patch)
tree456f0e2be1a341704485e90b4f7b31c21d40d127 /main.go
parent682acb34813188d292f7d6312f7d3d5c0fdfb22b (diff)
add --do-patches
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/main.go b/main.go
index 721cc76..35f0473 100644
--- a/main.go
+++ b/main.go
@@ -64,11 +64,14 @@ func main() {
done = true
}
- // do the gui at the very end
- if argv.DoGui {
+ if argv.DoPatchSet {
sendDevelDiff()
- sendMasterDiff()
+ // sendMasterDiff()
okExit("patches")
+ }
+
+ // do the gui at the very end
+ if argv.DoGui {
doGui()
}
if !done {