aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-04-10 23:16:09 +0200
committerJakob Unterwurzacher2016-04-10 23:16:09 +0200
commit36c1039228b86e2e72367bbb46be41390eb57d84 (patch)
treeff460d75e05e7c571cf7f3d5a219aed629122c82 /main.go
parent776c734f432db0afbdc993e4632aa030163a9b89 (diff)
build.bash: bake the go-fuse commit hash into the binariesv0.9
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index f7d53ae..8e6e565 100644
--- a/main.go
+++ b/main.go
@@ -52,6 +52,7 @@ var flagSet *flag.FlagSet
// GitVersion will be set by the build script "build.bash"
var GitVersion = "[version not set - please compile using ./build.bash]"
+var GitVersionFuse = "[version not set - please compile using ./build.bash]"
func initDir(args *argContainer) {
err := checkDirEmpty(args.cipherdir)
@@ -137,7 +138,8 @@ func changePassword(args *argContainer) {
// printVersion - print a version string like
// "gocryptfs v0.3.1-31-g6736212-dirty; on-disk format 2"
func printVersion() {
- fmt.Printf("%s %s; on-disk format %d\n", toggledlog.ProgramName, GitVersion, contentenc.CurrentVersion)
+ fmt.Printf("%s %s; on-disk format %d; go-fuse %s\n",
+ toggledlog.ProgramName, GitVersion, contentenc.CurrentVersion, GitVersionFuse)
}
func main() {