Skip to content

Commit

Permalink
fix: skip adding build date
Browse files Browse the repository at this point in the history
  • Loading branch information
kha7iq committed May 27, 2023
1 parent 5f58465 commit 64dd111
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import (
// Version variables are used for semVer
var (
version string
buildDate string
commitSHA string
)

Expand All @@ -42,7 +41,7 @@ func main() {
EnvVars: []string{"NCP_FILENAME_TURNICATE"},
},
}
app.Version = version + " BuildDate: " + buildDate + " " + " CommitSHA: " + helper.TrimSHA(commitSHA)
app.Version = version + " CommitSHA: " + helper.TrimSHA(commitSHA)
app.Usage = "provides a straightforward and efficient way to handle file transfers between the local machine and a NFS server."
app.Description = `NCP offers a user-friendly solution for efficiently transferring files and folders between your local machine
and the NFS server. It enables seamless recursive upload and download operations, supporting both NFS v3 and NFS V4 protocols.`
Expand Down

0 comments on commit 64dd111

Please sign in to comment.