Skip to content

Commit

Permalink
fixed issue with manifestwork object not creating, added usage to 'la…
Browse files Browse the repository at this point in the history
…beler'
  • Loading branch information
clubanderson committed Apr 19, 2024
1 parent 183e693 commit e3ded66
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/labeler.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ func main() {

if !h.IsInputFromPipe() {
if len(os.Args) <= 1 {
log.Printf("no arguments given, need usage here (TODO)")
args := []string{os.Args[0], "kubectl", "--l-help"}
// log.Printf(args[0] + " requires a subcommand\n")
h.AliasRun(args[1:], p)
} else {
args := os.Args[1:]
if args[0] == "--version" || args[0] == "-v" {
Expand Down

0 comments on commit e3ded66

Please sign in to comment.