From b4a5a55cac9c430e5eacb21bb0a809d5f195928a Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Tue, 26 Aug 2014 01:06:33 +0400 Subject: [PATCH] Style fixes. #96 --- cmd/context.go | 3 ++- cmd/run.go | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/cmd/context.go b/cmd/context.go index 2af73773..1d459e10 100644 --- a/cmd/context.go +++ b/cmd/context.go @@ -203,7 +203,7 @@ func (context *AptlyContext) PackagePool() aptly.PackagePool { return context.packagePool } -// PublishedStorage returns instance of PublishedStorage +// GetPublishedStorage returns instance of PublishedStorage func (context *AptlyContext) GetPublishedStorage(name string) aptly.PublishedStorage { publishedStorage, ok := context.publishedStorages[name] if !ok { @@ -230,6 +230,7 @@ func (context *AptlyContext) GetPublishedStorage(name string) aptly.PublishedSto return publishedStorage } +// UpdateFlags sets internal copy of flags in the context func (context *AptlyContext) UpdateFlags(flags *flag.FlagSet) { context.flags = flags } diff --git a/cmd/run.go b/cmd/run.go index 2d05db85..6ac45138 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -5,7 +5,8 @@ import ( "github.com/smira/commander" ) -func Run(cmd *commander.Command, cmd_args []string, initContext bool) (returnCode int) { +// Run runs single command starting from root cmd with args, optionally initializing context +func Run(cmd *commander.Command, cmdArgs []string, initContext bool) (returnCode int) { defer func() { if r := recover(); r != nil { fatal, ok := r.(*FatalError) @@ -19,7 +20,7 @@ func Run(cmd *commander.Command, cmd_args []string, initContext bool) (returnCod returnCode = 0 - flags, args, err := cmd.ParseFlags(cmd_args) + flags, args, err := cmd.ParseFlags(cmdArgs) if err != nil { Fatal(err) }