diff options
author | Jakob Unterwurzacher | 2017-05-06 14:26:34 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-05-06 14:26:34 +0200 |
commit | a48893b653085b067f91e11806e4de017741d509 (patch) | |
tree | d4d176163a0b0ccca837be96b84536eb6662733f /race.go | |
parent | c52e1abc5869dd27a28f71ff43ec4e1c1917acf4 (diff) |
main: add "-race" to the version string
...if we were compiled with "-race".
Diffstat (limited to 'race.go')
-rw-r--r-- | race.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -0,0 +1,8 @@ +// +build race + +package main + +func init() { + // adds " -race" to the output of "gocryptfs -version" + raceDetector = true +} |