about summary refs log tree commit diff stats
path: root/import
diff options
context:
space:
mode:
Diffstat (limited to 'import')
-rw-r--r--import/main.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/import/main.go b/import/main.go
index 87f8e4d..52b4515 100644
--- a/import/main.go
+++ b/import/main.go
@@ -22,6 +22,7 @@ const timeout = 30 * time.Minute
 type Config struct {
 	ConfigFile string     `conf:"short:c"`
 	LogLevel   slog.Level `conf:"default:INFO"`
+	Replace    bool       `conf:"default:false,help:whether to remove existing database, if exists"`
 }
 
 func main() {
@@ -50,7 +51,7 @@ func main() {
 		return
 	}
 
-	indexer, err := search.NewIndexer(cfg.DataPath)
+	indexer, err := search.NewIndexer(cfg.DataPath, runtimeConfig.Replace)
 	if err != nil {
 		log.Fatalf("Failed to create indexer: %v", err)
 	}
@@ -93,7 +94,7 @@ func main() {
 		}
 		logger.Info("importer fetch succeeded", "updated", updated)
 
-		if updated {
+		if updated || runtimeConfig.Replace {
 			hadWarnings, err := imp.Import(ctx, indexer)
 
 			if err != nil {