summaryrefslogtreecommitdiff
path: root/args.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-20 23:13:26 -0600
committerJeff Carr <[email protected]>2024-02-20 23:13:26 -0600
commit38b1ecab60974813ecf8d64685f2992152b3edf9 (patch)
treeee9cd7c32ceec1cf49ac86447a921ae1ced1a972 /args.go
parentc9f149bcb2ad96f08f3464639517e48a5c3cbdde (diff)
add --release builds
Diffstat (limited to 'args.go')
-rw-r--r--args.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/args.go b/args.go
index 36d6918..70c34fd 100644
--- a/args.go
+++ b/args.go
@@ -13,9 +13,10 @@ import (
)
var args struct {
- NoGui bool `arg:"--no-gui" help:"don't open the gui, just make the .deb"`
- Repo string `arg:"--repo" help:"go get path to the repo"`
- PkgDir string `arg:"--pkg-dir" help:"set default directory (~/incoming/)"`
+ NoGui bool `arg:"--no-gui" help:"don't open the gui, just make the .deb"`
+ Repo string `arg:"--repo" help:"go get path to the repo"`
+ PkgDir string `arg:"--pkg-dir" help:"set default directory (~/incoming/)"`
+ Release bool `arg:"--release" help:"build a release from the last git tag"`
}
func init() {