diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-06-13 21:56:54 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-06-13 21:56:54 +0200 |
commit | c7ad83472710a7e72d7566b09f2eb223708e1343 (patch) | |
tree | 4f76a2dd326344b5f2594d3f3a3d58cf363c3bea /main.go | |
parent | df7d90ed36da337ff271324476591910f3de9792 (diff) |
Make the DB private to dbx
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ func watch() { } if nstat.ModTime() != ostat.ModTime() { - dbx.DB.Close() + dbx.Close() if err := syscall.Exec(path, os.Args, os.Environ()); err != nil { log.Fatal(err) } |