aboutsummaryrefslogtreecommitdiffstats
path: root/commands/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/root.go')
-rw-r--r--commands/root.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/commands/root.go b/commands/root.go
index bbf7d6de..9435ce64 100644
--- a/commands/root.go
+++ b/commands/root.go
@@ -5,6 +5,7 @@ import (
"os"
"github.com/MichaelMure/git-bug/bug"
+ "github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/repository"
"github.com/spf13/cobra"
)
@@ -68,5 +69,13 @@ func loadRepo(cmd *cobra.Command, args []string) error {
return err
}
+ // Prevent the command from running when the cache has locked the repo
+ // Todo: make it more fine-grained at first
+ // Todo: make the running cache available for other processes
+ err = cache.RepoIsAvailable(repo)
+ if err != nil {
+ return err
+ }
+
return nil
}