From 88d0368529139331f72dee4e37af7b9055a307e3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 11 Jun 2013 11:26:13 -0700 Subject: [PATCH] Change default config to `~/.packerconfig` --- packer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer.go b/packer.go index e21108d84..60e21421c 100644 --- a/packer.go +++ b/packer.go @@ -89,7 +89,7 @@ func loadConfig() (*config, error) { return nil, err } - configFile = filepath.Join(u.HomeDir, ".packerrc") + configFile = filepath.Join(u.HomeDir, ".packerconfig") mustExist = false }