Skip to content

Commit ec26ed7

Browse files
gilcrestclaude
andcommitted
Fix error message in migrations main to reference DBUp()
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5c8cbf6 commit ec26ed7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/migrations/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
func main() {
1313
if err := DBUp(os.Args); err != nil {
14-
fmt.Fprintf(os.Stderr, "error from commands.Run(): %s\n", err)
14+
fmt.Fprintf(os.Stderr, "error from DBUp(): %s\n", err)
1515
os.Exit(1)
1616
}
1717
}

0 commit comments

Comments
 (0)