aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-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
)