From dd4148b88e3c184be942dbb9ef19074a5b3024b5 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 31 Jan 2026 21:18:34 -0700 Subject: [PATCH] chore(cmd/sql-migrate): make file path ormatting consistent for all 'found ./path/to/x' outtput --- cmd/sql-migrate/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sql-migrate/main.go b/cmd/sql-migrate/main.go index 3731212..e581f21 100644 --- a/cmd/sql-migrate/main.go +++ b/cmd/sql-migrate/main.go @@ -472,7 +472,7 @@ func mustInit(cfg *MainConfig) { // write config if slices.Contains(ups, M_MIGRATOR_NAME) { - fmt.Fprintf(os.Stderr, " found %s\n", filepath.Join(cfg.migrationsDir, M_MIGRATOR_UP_NAME)) + fmt.Fprintf(os.Stderr, " found %s\n", filepathJoin(cfg.migrationsDir, M_MIGRATOR_UP_NAME)) } else { if cfg.logPath == "" { migrationsParent := filepath.Dir(cfg.migrationsDir)