commit | bd019b0b8107a4985298ef1886a2fe42316f0838 | [log] [tgz] |
---|---|---|
author | Matt Farina <matt@mattfarina.com> | Wed Apr 06 14:19:55 2016 -0400 |
committer | Matt Farina <matt@mattfarina.com> | Wed Apr 06 14:19:55 2016 -0400 |
tree | 380b0ee4c539df9a7657692708a16ddfcef943a7 | |
parent | a88a2daa4e49a29f97e4bbf27597facc864b9ce8 [diff] |
Providing a warning when relative path cannot be found.
diff --git a/action/ensure.go b/action/ensure.go index 46dc45e..de729fe 100644 --- a/action/ensure.go +++ b/action/ensure.go
@@ -51,6 +51,8 @@ if name != conf.Name { msg.Warn("The name listed in the config file (%s) does not match the current location (%s)", conf.Name, name) } + } else { + msg.Warn("Problem finding the config file path (%s) relative to the current directory (%s): %s", b, cwd, err) } }