Bläddra i källkod

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 år sedan
förälder
incheckning
fe1cde6614
Ingen känd nyckel hittad för denna signaturen i databasen GPG-nyckel ID: 935911A1FF0660B1
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      cmd/cmd.go

+ 1
- 1
cmd/cmd.go Visa fil

@@ -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 {


Laddar…
Avbryt
Spara