Commit 8b728794 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Default cache to "packer_cache" in CWD

parent cea6f90f
...@@ -36,17 +36,19 @@ func main() { ...@@ -36,17 +36,19 @@ func main() {
defer plugin.CleanupClients() defer plugin.CleanupClients()
var cache packer.Cache cacheDir := os.Getenv("PACKER_CACHE_DIR")
if cacheDir := os.Getenv("PACKER_CACHE_DIR"); cacheDir != "" { if cacheDir == "" {
if err := os.MkdirAll(cacheDir, 0755); err != nil { cacheDir = "packer_cache"
fmt.Fprintf(os.Stderr, "Error preparing cache directory: \n\n%s\n", err) }
os.Exit(1)
}
log.Printf("Setting cache directory: %s", cacheDir) if err := os.MkdirAll(cacheDir, 0755); err != nil {
cache = &packer.FileCache{CacheDir: cacheDir} fmt.Fprintf(os.Stderr, "Error preparing cache directory: \n\n%s\n", err)
os.Exit(1)
} }
log.Printf("Setting cache directory: %s", cacheDir)
cache := &packer.FileCache{CacheDir: cacheDir}
envConfig := packer.DefaultEnvironmentConfig() envConfig := packer.DefaultEnvironmentConfig()
envConfig.Cache = cache envConfig.Cache = cache
envConfig.Commands = config.CommandNames() envConfig.Commands = config.CommandNames()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment