diff options
| author | Jeff Carr <[email protected]> | 2024-02-20 23:13:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-20 23:13:26 -0600 |
| commit | 38b1ecab60974813ecf8d64685f2992152b3edf9 (patch) | |
| tree | ee9cd7c32ceec1cf49ac86447a921ae1ced1a972 /args.go | |
| parent | c9f149bcb2ad96f08f3464639517e48a5c3cbdde (diff) | |
add --release builds
Diffstat (limited to 'args.go')
| -rw-r--r-- | args.go | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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() { |
