fix: ensure we bind oohelperd with the repo's version number (#558)

Work related to https://github.com/ooni/probe/issues/1506#issuecomment-949715707.

This diff cherry-picks from the release/3.11 branch.
This commit is contained in:
Simone Basso
2021-10-22 17:21:38 +02:00
committed by GitHub
parent 8f202a71ac
commit 1f0fcafb8a
2 changed files with 18 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// Command printversion prints the current version of this repository.
package main
import (
"fmt"
"github.com/ooni/probe-cli/v3/internal/version"
)
func main() {
fmt.Println(version.Version)
}