Skip to content

Commit 26c2ae1

Browse files
committed
feat: hex encode db name
Signed-off-by: Brian McGee <[email protected]>
1 parent 1019851 commit 26c2ae1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/cache/cache.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cache
33
import (
44
"context"
55
"crypto/sha1"
6-
"encoding/base32"
6+
"encoding/hex"
77
"errors"
88
"fmt"
99
"io/fs"
@@ -39,7 +39,7 @@ func Open(treeRoot string, clean bool) (err error) {
3939
h.Write([]byte(treeRoot))
4040
digest := h.Sum(nil)
4141

42-
name := base32.StdEncoding.EncodeToString(digest)
42+
name := hex.EncodeToString(digest)
4343
path, err := xdg.CacheFile(fmt.Sprintf("treefmt/eval-cache/%v.db", name))
4444
if err != nil {
4545
return fmt.Errorf("%w: could not resolve local path for the cache", err)

0 commit comments

Comments
 (0)