Browse Source

Include version string in version command output

The command `transfer.sh version` does not include the application's
version string in its output. Fix this.
tags/v1.2.0
stillwondering 3 years ago
parent
commit
fe1cde6614
No known key found for this signature in database GPG Key ID: 935911A1FF0660B1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cmd/cmd.go

+ 1
- 1
cmd/cmd.go View File

@@ -251,7 +251,7 @@ type Cmd struct {
}

func VersionAction(c *cli.Context) {
fmt.Println(color.YellowString(fmt.Sprintf("transfer.sh: Easy file sharing from the command line")))
fmt.Println(color.YellowString(fmt.Sprintf("transfer.sh %s: Easy file sharing from the command line", Version)))
}

func New() *Cmd {


Loading…
Cancel
Save