Skip to content

Commit

Permalink
fix: only try opening the cache if cache is enabled
Browse files Browse the repository at this point in the history
Otherwise `--no-cache` still fails to open the cache.
  • Loading branch information
flokli committed Jul 1, 2024
1 parent ab9f831 commit 601af09
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions cli/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,11 @@ func (f *Format) Run() (err error) {
f.formatters[name] = formatter
}

// open the cache
if err = cache.Open(f.TreeRoot, f.ClearCache, f.formatters); err != nil {
return err
// open the cache if configured
if !f.NoCache {
if cache.Open(f.TreeRoot, f.ClearCache, f.formatters); err != nil {
return err
}
}

// create an app context and listen for shutdown
Expand Down Expand Up @@ -148,7 +150,9 @@ func (f *Format) Run() (err error) {
f.processedCh = make(chan *walk.File, cap(f.filesCh))

// start concurrent processing tasks in reverse order
eg.Go(f.updateCache(ctx))
if !f.NoCache {
eg.Go(f.updateCache(ctx))
}
eg.Go(f.applyFormatters(ctx))
eg.Go(f.walkFilesystem(ctx))

Expand Down

0 comments on commit 601af09

Please sign in to comment.