Skip to content

Instantly share code, notes, and snippets.

@scorphus
Created August 11, 2014 20:44
Show Gist options
  • Save scorphus/92380e75cc1ce194bacb to your computer and use it in GitHub Desktop.
Save scorphus/92380e75cc1ce194bacb to your computer and use it in GitHub Desktop.
bare.go
var bare string
func bareLocation() string {
if bare != "" {
return bare
}
var err error
bare, err = config.GetString("git:bare:location")
if err != nil {
panic("You should configure a git:bare:location for gandalf.")
}
return bare
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment