Skip to content

Instantly share code, notes, and snippets.

@scorphus
Created August 11, 2014 20:52
Show Gist options
  • Save scorphus/ae9daa0a793d4107c177 to your computer and use it in GitHub Desktop.
Save scorphus/ae9daa0a793d4107c177 to your computer and use it in GitHub Desktop.
tempdir.go
var tempDir string
func tempDirLocation() string {
if tempDir == "" {
tempDir, _ = config.GetString("repository:tempDir")
}
return tempDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment