From a2c0849d111d5139cb80177647edf1e206ac7b75 Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Mon, 17 Jun 2019 23:07:50 +0200 Subject: [PATCH] fix sqlite command name --- roundcube.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcube.nix b/roundcube.nix index f404415..255ef69 100644 --- a/roundcube.nix +++ b/roundcube.nix @@ -98,7 +98,7 @@ in fi if [ -s "${config.variables.roundcubeDataDir}/roundcube.sqlite" ]; then # Just go ahead and remove the sessions on a boot - ${pkgs.sqlite}/bin/sqlite "${config.variables.roundcubeDataDir}/roundcube.sqlite" "DELETE FROM session;" + ${pkgs.sqlite}/bin/sqlite3 "${config.variables.roundcubeDataDir}/roundcube.sqlite" "DELETE FROM session;" fi ''; };