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)
 		}
 	}