github.com/decred/politeia@v1.4.0/util/version/version_nobuildinfo.go (about)

     1  // Copyright (c) 2021-2022 The Decred developers
     2  // Use of this source code is governed by an ISC
     3  // license that can be found in the LICENSE file.
     4  
     5  //go:build !go1.18
     6  // +build !go1.18
     7  
     8  package version
     9  
    10  // vcsCommitID returns an empty string for all Go versions prior to 1.18 since
    11  // the information is not availalbe in binaries prior to that version.
    12  func vcsCommitID() string {
    13  	return ""
    14  }