We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24a2f44 commit 730b5feCopy full SHA for 730b5fe
main.go
@@ -7,6 +7,7 @@ import (
7
"io"
8
"os"
9
"path/filepath"
10
+ "runtime"
11
"sort"
12
"strings"
13
)
@@ -209,6 +210,6 @@ func createMetaTags() []string {
209
210
fmt.Sprintf("!_TAG_PROGRAM_AUTHOR\t%s\t/%s/", AuthorName, AuthorEmail),
211
fmt.Sprintf("!_TAG_PROGRAM_NAME\t%s", Name),
212
fmt.Sprintf("!_TAG_PROGRAM_URL\t%s", URL),
- fmt.Sprintf("!_TAG_PROGRAM_VERSION\t%s", Version),
213
+ fmt.Sprintf("!_TAG_PROGRAM_VERSION\t%s\t/%s/", Version, runtime.Version()),
214
}
215
0 commit comments