Skip to content

Commit

Permalink
refactor(client): modify help command
Browse files Browse the repository at this point in the history
  • Loading branch information
ikr4-m committed Aug 8, 2024
1 parent ad500d0 commit fb3b2d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/mdrop-client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Subcommand:
get [options] <token>
subcommand
Create instance for retriving file from sender
send [options] <file>
send [options] <file1> [file2] [file...]
subcommand
Send file to reciever instance`

Expand Down
2 changes: 1 addition & 1 deletion cmd/mdrop-client/send_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func SendCommand(args []string) {

file := flag.Args()
if *help || len(file) == 0 {
fmt.Println("Command: mdrop send [options] <file>")
fmt.Println("Command: mdrop send [options] <file1> [file2] [file...]")
flag.Usage()
os.Exit(1)
}
Expand Down

0 comments on commit fb3b2d6

Please sign in to comment.