aboutsummaryrefslogtreecommitdiffstats
path: root/commands/env.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/env.go')
-rw-r--r--commands/env.go18
1 files changed, 16 insertions, 2 deletions
diff --git a/commands/env.go b/commands/env.go
index 98a7e1a5..4d90348f 100644
--- a/commands/env.go
+++ b/commands/env.go
@@ -46,12 +46,26 @@ func (o out) Println(a ...interface{}) {
_, _ = fmt.Fprintln(o, a...)
}
+func getCWD(cmd *cobra.Command, args []string) (string, error) {
+ cwd, ok := cmd.Context().Value("cwd").(string)
+ if cwd != "" && ok {
+ return cwd, nil
+ }
+
+ cwd, err := os.Getwd()
+ if err != nil {
+ return "", fmt.Errorf("unable to get the current working directory: %q", err)
+ }
+
+ return cwd, nil
+}
+
// loadRepo is a pre-run function that load the repository for use in a command
func loadRepo(env *Env) func(*cobra.Command, []string) error {
return func(cmd *cobra.Command, args []string) error {
- cwd, err := os.Getwd()
+ cwd, err := getCWD(cmd, args)
if err != nil {
- return fmt.Errorf("unable to get the current working directory: %q", err)
+ return err
}
env.repo, err = repository.OpenGoGitRepo(cwd, []repository.ClockLoader{bug.ClockLoader})