pdb

Simple password manager
Log | Files | Refs

commit 76965a0b452846a53c1c20757af8430c3d6b6a21
parent 03a432020f6eb3c9962d20e75fb0e0c8ff222289
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 16 Sep 2018 13:08:47 +0300

Also ignore .gitignore

Diffstat:
src/actions.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/actions.lua b/src/actions.lua @@ -42,7 +42,7 @@ end function _M.list() local names = { } for file in lfs.dir( paths.db ) do - if file ~= "." and file ~= ".." and file ~= ".git" then + if file ~= "." and file ~= ".." and file ~= ".git" and file ~= ".gitignore" then table.insert( names, file ) end end