From db0d553f5daac7b6e58098735f1372a07300f54a Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Mon, 22 Oct 2012 15:57:05 -0700 Subject: [PATCH] Package reorg part 3 - binary "inbucketd" is now "inbucket" - renamed "conf" to "etc" so it doesn't get confused with "config" pacakge dir --- {conf => etc}/inbucket.conf | 0 main/inbucketd.go => inbucket.go | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {conf => etc}/inbucket.conf (100%) rename main/inbucketd.go => inbucket.go (90%) diff --git a/conf/inbucket.conf b/etc/inbucket.conf similarity index 100% rename from conf/inbucket.conf rename to etc/inbucket.conf diff --git a/main/inbucketd.go b/inbucket.go similarity index 90% rename from main/inbucketd.go rename to inbucket.go index 6c980af..afffee4 100644 --- a/main/inbucketd.go +++ b/inbucket.go @@ -41,7 +41,7 @@ func main() { func init() { flag.Usage = func() { - fmt.Fprintln(os.Stderr, "Usage of inbucketd [options] :") + fmt.Fprintln(os.Stderr, "Usage of inbucket [options] :") flag.PrintDefaults() } }