diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-05-13 11:55:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-05-13 11:56:49 +0200 |
commit | 4f4bfa10eb9576bf66d8abd6d8b79eed3dce3976 (patch) | |
tree | 3bedf91fa5c594812b31b5b571ba1032f4cbe1d6 /scripts | |
parent | 82cbe9c1a304ea53b16cb1c3e4b396eb4efa98fc (diff) |
Goodbye, SQLite!
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mumi.in | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/mumi.in b/scripts/mumi.in index 67dad78..2d4b28f 100644 --- a/scripts/mumi.in +++ b/scripts/mumi.in @@ -29,8 +29,6 @@ (mumi config) ((mumi debbugs) #:select (extract-bug-numbers)) - ((mumi bugs) - #:select (db-create! update-bug-database!)) ((mumi jobs) #:select (worker-loop)) ((mumi web server) @@ -38,8 +36,6 @@ ((mumi xapian) #:select (index!))) -(db-create!) - (define %default-repl-server-port ;; Default port to run REPL server on, if --listen-repl is provided ;; but no port is mentioned @@ -58,10 +54,6 @@ (display "Starting full indexing." (current-error-port)) (newline (current-error-port))) (index! #:full? (zero? count)) - (let* ((packages (%config 'packages)) - (nums (append (extract-bug-numbers packages) - (extract-bug-numbers packages #:archived? #t)))) - (update-bug-database! nums)) (and loop? (begin (format (current-error-port) |