Skip to content

Commit d02d248

Browse files
authored
Remove options struct for the deleted "get" subcommand. (#309)
* Remove options struct for the deleted "get" subcommand. * Update VERSION and Changelog for please_go.
1 parent 89afe7d commit d02d248

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

tools/please_go/ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.15.2
2+
--------------
3+
* Fully remove `get` subcommand (#309)
4+
15
Version 1.15.1
26
--------------
37
* Use more specific names for coverage variables to avoid clashes

tools/please_go/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.1
1+
1.15.2

tools/please_go/please_go.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,6 @@ var opts = struct {
100100
Requirements []string `positional-arg-name:"requirements" description:"Any module requirements not included in the go.mod"`
101101
} `positional-args:"true"`
102102
} `command:"generate" alias:"g" description:"Generate build targets for a Go module"`
103-
GoGet struct {
104-
ModFile string `short:"m" long:"mod_file" description:"A go.mod file to use as a set of reuirementzs"`
105-
Args struct {
106-
Requirements []string `positional-arg-name:"requirements" description:"a set of module@version pairs"`
107-
} `positional-args:"true"`
108-
} `command:"get" description:"Generate go_get rules"`
109103
ModInfo struct {
110104
GoTool string `short:"g" long:"go" env:"TOOLS_GO" required:"true" description:"The Go tool we'll use"`
111105
ModulePath string `short:"m" long:"module_path" description:"The path for the module being built"`

0 commit comments

Comments
 (0)