On Sat, 27 Feb 2021 at 16:37, Marcelo Huerta <[email protected]> wrote: > > The command appears to assume that the doit database backend is always dbm, > and it doesn't allow to specify a different backend as build does. I used > sqlite3 and it failed. > > Maybe this problem exists in other commands as well? > > -- > You received this message because you are subscribed to the Google Groups > "nikola-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/nikola-discuss/1c1defb2-4465-48b6-8373-799b26602834n%40googlegroups.com.
`nikola auto` runs `nikola build` as a subprocess, which means it has to manually pass arguments into that `build` call. I added support for --db-file and --backend in https://github.com/getnikola/nikola/pull/3520 . Other Nikola commands are not affected, since they take the arguments themselves (most doit-provided commands) or don’t use the database at all (most Nikola-provided commands). -- Chris Warrick <https://chriswarrick.com/> PGP: 5EAAEA16 -- You received this message because you are subscribed to the Google Groups "nikola-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nikola-discuss/CAMw%2Bj7%2BeyPxCSTK7Ndf59nQUWzw-cHvwiQpzrtDwenhAjBA39A%40mail.gmail.com.
