From ee343f17e9cec463ad76d45c789dda49f445bb34 Mon Sep 17 00:00:00 2001 From: Alex Stevenson Date: Sat, 26 Jul 2025 18:29:23 -0400 Subject: [PATCH] Whoops left in a little debugging thing. The Command doesn't seem to get the errors from the stream maybe? But the setup file works fine from normal terminal exec. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5ec401e..2d67cad 100644 --- a/main.go +++ b/main.go @@ -59,7 +59,7 @@ func prep_query(db *sql.DB, q string) (*sql.Stmt){ func main() { // exec setup.sql to init - cmd := exec.Command("sqlite3", "rpgqui.db < sedfsftup.sql") + cmd := exec.Command("sqlite3", "rpgqui.db < setup.sql") out, err := cmd.Output() if err != nil {