We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98b130 commit 5749eb2Copy full SHA for 5749eb2
.gitignore
@@ -4,4 +4,7 @@
4
*.so
5
6
# example binary
7
-examples/examples
+examples/examples
8
+
9
+# idea
10
+.idea/
version.go
@@ -73,7 +73,10 @@ func Print() {
73
74
xprintf("Go version", GoVersion)
75
xprintf("Git commit", GitCommit)
76
- xprintf("Commit date", GitCommitDate)
77
+ if GitCommitDate != unknownProperty {
78
+ xprintf("Commit date", GitCommitDate)
79
+ }
80
81
if GitTreeState != unknownProperty {
82
xprintf("Git state", GitTreeState)
0 commit comments