Skip to content

Commit 491242c

Browse files
steveyeggeclaude
andcommitted
fix: update cliDir() → CLIDir() after linter rename
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2d3ce08 commit 491242c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

internal/storage/dolt/federation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ func (s *DoltStore) ListRemotes(ctx context.Context) ([]storage.RemoteInfo, erro
123123
// ignored because a missing remote will surface a clear error at push/pull time.
124124
// See GH#2315.
125125
func (s *DoltStore) syncCLIRemotesToSQL(ctx context.Context) {
126-
dir := s.cliDir()
126+
dir := s.CLIDir()
127127
if dir == "" {
128128
return
129129
}

internal/storage/dolt/federation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ func TestSyncCLIRemotesToSQL(t *testing.T) {
436436

437437
// Ensure cliDir exists with a dolt init so CLI remote commands work.
438438
// In test mode, dbPath/database may not exist on the filesystem.
439-
dir := store.cliDir()
439+
dir := store.CLIDir()
440440
if dir == "" {
441441
t.Skip("no CLI dir available")
442442
}

0 commit comments

Comments
 (0)