diff options
Diffstat (limited to 'commands/ls.go')
-rw-r--r-- | commands/ls.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/ls.go b/commands/ls.go index 1fababaa..1a759a26 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -139,7 +139,8 @@ git bug ls status:open sort:edit-desc List closed bugs sorted by creation with flags: git bug ls --status closed --by creation `, - RunE: runLsBug, + PreRunE: loadRepo, + RunE: runLsBug, } func init() { |