aboutsummaryrefslogtreecommitdiff
path: root/cmd/index-pack
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-25 14:34:50 +0000
committerGravatar Runxi Yu2026-03-25 14:34:50 +0000
commite4a7aa0742f5070299d37e8421c99d67f0af3f90 (patch)
tree36d89781476a92e61280c5ff232a2773e4092c0e /cmd/index-pack
parent*: delta -> packfile/delta (diff)
signatureNo signature
*: object/store -> object/storer v0.1.107
Diffstat (limited to 'cmd/index-pack')
-rw-r--r--cmd/index-pack/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/index-pack/main.go b/cmd/index-pack/main.go
index 3cc91075..749e5e8a 100644
--- a/cmd/index-pack/main.go
+++ b/cmd/index-pack/main.go
@@ -9,7 +9,7 @@ import (
"path/filepath"
objectid "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/object/store"
+ "codeberg.org/lindenii/furgit/object/storer"
"codeberg.org/lindenii/furgit/packfile/ingest"
"codeberg.org/lindenii/furgit/repository"
)
@@ -36,7 +36,7 @@ func main() {
func run(repoPath, destinationPath, objectFormat string, fixThin, writeRev bool) error {
var (
algo objectid.Algorithm
- base objectstore.Store
+ base objectstorer.Store
repo *repository.Repository
)