diff options
author | Michael Muré <batolettre@gmail.com> | 2023-03-18 21:13:27 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2023-03-18 21:13:27 +0100 |
commit | 281d4a642d87a23ed62045db899ff967abf8b818 (patch) | |
tree | 97b4436d20983874925a864d33223f4d9a541bef /cache | |
parent | 56202ec0c2da653239988b2e13f5a323210d8ab3 (diff) | |
download | git-bug-281d4a642d87a23ed62045db899ff967abf8b818.tar.gz git-bug-281d4a642d87a23ed62045db899ff967abf8b818.zip |
execenv: fix some cache building progress bar artifact
Still one issue remaining: the last bar doesn't dissapear. Looks like a mbp issue.
Diffstat (limited to 'cache')
-rw-r--r-- | cache/repo_cache.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cache/repo_cache.go b/cache/repo_cache.go index 9e45d1f1..19b6e266 100644 --- a/cache/repo_cache.go +++ b/cache/repo_cache.go @@ -210,10 +210,15 @@ type BuildEventType int const ( _ BuildEventType = iota + // BuildEventCacheIsBuilt signal that the cache is being built (aka, not skipped) BuildEventCacheIsBuilt + // BuildEventRemoveLock signal that an old repo lock has been cleaned BuildEventRemoveLock + // BuildEventStarted signal the beginning of a cache build for an entity BuildEventStarted + // BuildEventProgress signal progress in the cache building for an entity BuildEventProgress + // BuildEventFinished signal the end of a cache build for an entity BuildEventFinished ) |