From d2088097975251ffeb40b4b678c2c31cf50cb6df Mon Sep 17 00:00:00 2001 From: Justin Murray Date: Thu, 14 May 2026 19:44:39 -0400 Subject: [PATCH] Strip trailing blank line from generated CLI docs Cobra's markdown generator emits files ending with a blank line, which trips 'git diff --check' whenever a doc gets modified near EOF. Add a post-processing pass to generate-docs that collapses trailing newlines to a single \n, and regenerate every doc to match. --- cmd/generate-docs/main.go | 31 ++++++++++++++++++++++++++++++ docs/cli/ghost.md | 1 - docs/cli/ghost_api-key.md | 1 - docs/cli/ghost_api-key_create.md | 1 - docs/cli/ghost_api-key_delete.md | 1 - docs/cli/ghost_api-key_list.md | 1 - docs/cli/ghost_config.md | 1 - docs/cli/ghost_config_reset.md | 1 - docs/cli/ghost_config_set.md | 1 - docs/cli/ghost_config_unset.md | 1 - docs/cli/ghost_connect.md | 1 - docs/cli/ghost_create.md | 1 - docs/cli/ghost_create_dedicated.md | 1 - docs/cli/ghost_delete.md | 1 - docs/cli/ghost_feedback.md | 1 - docs/cli/ghost_fork.md | 1 - docs/cli/ghost_fork_dedicated.md | 1 - docs/cli/ghost_invoice.md | 1 - docs/cli/ghost_invoice_list.md | 1 - docs/cli/ghost_invoice_view.md | 1 - docs/cli/ghost_list.md | 1 - docs/cli/ghost_login.md | 1 - docs/cli/ghost_logout.md | 1 - docs/cli/ghost_logs.md | 1 - docs/cli/ghost_mcp.md | 1 - docs/cli/ghost_mcp_get.md | 1 - docs/cli/ghost_mcp_install.md | 1 - docs/cli/ghost_mcp_list.md | 1 - docs/cli/ghost_mcp_start.md | 1 - docs/cli/ghost_mcp_start_http.md | 1 - docs/cli/ghost_mcp_start_stdio.md | 1 - docs/cli/ghost_mcp_status.md | 1 - docs/cli/ghost_mcp_uninstall.md | 1 - docs/cli/ghost_password.md | 1 - docs/cli/ghost_pause.md | 1 - docs/cli/ghost_payment.md | 1 - docs/cli/ghost_payment_add.md | 1 - docs/cli/ghost_payment_delete.md | 1 - docs/cli/ghost_payment_list.md | 1 - docs/cli/ghost_payment_primary.md | 1 - docs/cli/ghost_payment_undelete.md | 1 - docs/cli/ghost_pricing.md | 1 - docs/cli/ghost_psql.md | 1 - docs/cli/ghost_rename.md | 1 - docs/cli/ghost_resume.md | 1 - docs/cli/ghost_schema.md | 1 - docs/cli/ghost_share.md | 1 - docs/cli/ghost_share_list.md | 1 - docs/cli/ghost_share_revoke.md | 1 - docs/cli/ghost_sql.md | 1 - docs/cli/ghost_status.md | 1 - docs/cli/ghost_upgrade.md | 1 - docs/cli/ghost_version.md | 1 - 53 files changed, 31 insertions(+), 52 deletions(-) diff --git a/cmd/generate-docs/main.go b/cmd/generate-docs/main.go index d66ce9f..93de254 100644 --- a/cmd/generate-docs/main.go +++ b/cmd/generate-docs/main.go @@ -1,8 +1,10 @@ package main import ( + "bytes" "flag" "fmt" + "io/fs" "log" "os" "path/filepath" @@ -63,6 +65,11 @@ func main() { log.Fatal(err) } } + // Cobra's markdown generator leaves a trailing blank line on every + // file. Strip it so `git diff --check` doesn't flag the EOF. + if err := trimTrailingBlankLines(*out, ".md"); err != nil { + log.Fatal(err) + } case "man": hdr := &doc.GenManHeader{Title: strings.ToUpper(root.Name()), Section: "1"} if err := doc.GenManTree(root, hdr, *out); err != nil { @@ -80,3 +87,27 @@ func main() { log.Fatalf("unknown format: %s", *format) } } + +func trimTrailingBlankLines(dir, ext string) error { + return filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error { + if err != nil { + return err + } + if d.IsDir() || filepath.Ext(path) != ext { + return nil + } + data, err := os.ReadFile(path) + if err != nil { + return err + } + trimmed := append(bytes.TrimRight(data, "\n"), '\n') + if bytes.Equal(trimmed, data) { + return nil + } + info, err := d.Info() + if err != nil { + return err + } + return os.WriteFile(path, trimmed, info.Mode().Perm()) + }) +} diff --git a/docs/cli/ghost.md b/docs/cli/ghost.md index 181b265..b37e8cb 100644 --- a/docs/cli/ghost.md +++ b/docs/cli/ghost.md @@ -50,4 +50,3 @@ Ghost is a command-line interface for managing PostgreSQL databases. * [ghost status](ghost_status.md) - Show space usage * [ghost upgrade](ghost_upgrade.md) - Upgrade the ghost CLI to the latest version * [ghost version](ghost_version.md) - Show version information - diff --git a/docs/cli/ghost_api-key.md b/docs/cli/ghost_api-key.md index 51a2388..a800be2 100644 --- a/docs/cli/ghost_api-key.md +++ b/docs/cli/ghost_api-key.md @@ -36,4 +36,3 @@ GHOST_API_KEY environment variable. * [ghost api-key create](ghost_api-key_create.md) - Create a new API key * [ghost api-key delete](ghost_api-key_delete.md) - Delete an API key * [ghost api-key list](ghost_api-key_list.md) - List API keys - diff --git a/docs/cli/ghost_api-key_create.md b/docs/cli/ghost_api-key_create.md index 6aec83e..283dd55 100644 --- a/docs/cli/ghost_api-key_create.md +++ b/docs/cli/ghost_api-key_create.md @@ -58,4 +58,3 @@ ghost api-key create [flags] ### SEE ALSO * [ghost api-key](ghost_api-key.md) - Manage API keys - diff --git a/docs/cli/ghost_api-key_delete.md b/docs/cli/ghost_api-key_delete.md index c58ad9e..7288d10 100644 --- a/docs/cli/ghost_api-key_delete.md +++ b/docs/cli/ghost_api-key_delete.md @@ -45,4 +45,3 @@ ghost api-key delete [flags] ### SEE ALSO * [ghost api-key](ghost_api-key.md) - Manage API keys - diff --git a/docs/cli/ghost_api-key_list.md b/docs/cli/ghost_api-key_list.md index e7b8066..5748ea5 100644 --- a/docs/cli/ghost_api-key_list.md +++ b/docs/cli/ghost_api-key_list.md @@ -36,4 +36,3 @@ ghost api-key list [flags] ### SEE ALSO * [ghost api-key](ghost_api-key.md) - Manage API keys - diff --git a/docs/cli/ghost_config.md b/docs/cli/ghost_config.md index 47af420..ee83af2 100644 --- a/docs/cli/ghost_config.md +++ b/docs/cli/ghost_config.md @@ -40,4 +40,3 @@ ghost config [flags] * [ghost config reset](ghost_config_reset.md) - Reset to defaults * [ghost config set](ghost_config_set.md) - Set configuration value * [ghost config unset](ghost_config_unset.md) - Remove configuration value - diff --git a/docs/cli/ghost_config_reset.md b/docs/cli/ghost_config_reset.md index 4e0b9f0..effbe9e 100644 --- a/docs/cli/ghost_config_reset.md +++ b/docs/cli/ghost_config_reset.md @@ -34,4 +34,3 @@ ghost config reset [flags] ### SEE ALSO * [ghost config](ghost_config.md) - List current configuration - diff --git a/docs/cli/ghost_config_set.md b/docs/cli/ghost_config_set.md index 440b3fd..3d92285 100644 --- a/docs/cli/ghost_config_set.md +++ b/docs/cli/ghost_config_set.md @@ -34,4 +34,3 @@ ghost config set [flags] ### SEE ALSO * [ghost config](ghost_config.md) - List current configuration - diff --git a/docs/cli/ghost_config_unset.md b/docs/cli/ghost_config_unset.md index e5ecc18..6a3e6c6 100644 --- a/docs/cli/ghost_config_unset.md +++ b/docs/cli/ghost_config_unset.md @@ -34,4 +34,3 @@ ghost config unset [flags] ### SEE ALSO * [ghost config](ghost_config.md) - List current configuration - diff --git a/docs/cli/ghost_connect.md b/docs/cli/ghost_connect.md index c8dd5bd..a97e40c 100644 --- a/docs/cli/ghost_connect.md +++ b/docs/cli/ghost_connect.md @@ -48,4 +48,3 @@ ghost connect [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_create.md b/docs/cli/ghost_create.md index 36324ed..2ee208a 100644 --- a/docs/cli/ghost_create.md +++ b/docs/cli/ghost_create.md @@ -58,4 +58,3 @@ ghost create [flags] * [ghost](ghost.md) - CLI for managing Postgres databases * [ghost create dedicated](ghost_create_dedicated.md) - Create a dedicated database - diff --git a/docs/cli/ghost_create_dedicated.md b/docs/cli/ghost_create_dedicated.md index 6222fbe..1893e3e 100644 --- a/docs/cli/ghost_create_dedicated.md +++ b/docs/cli/ghost_create_dedicated.md @@ -66,4 +66,3 @@ ghost create dedicated [flags] ### SEE ALSO * [ghost create](ghost_create.md) - Create a new Postgres database - diff --git a/docs/cli/ghost_delete.md b/docs/cli/ghost_delete.md index 55a61f9..fc53867 100644 --- a/docs/cli/ghost_delete.md +++ b/docs/cli/ghost_delete.md @@ -48,4 +48,3 @@ ghost delete [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_feedback.md b/docs/cli/ghost_feedback.md index 79d10ca..95cc059 100644 --- a/docs/cli/ghost_feedback.md +++ b/docs/cli/ghost_feedback.md @@ -50,4 +50,3 @@ ghost feedback [message] [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_fork.md b/docs/cli/ghost_fork.md index eccbfbd..5695a0c 100644 --- a/docs/cli/ghost_fork.md +++ b/docs/cli/ghost_fork.md @@ -58,4 +58,3 @@ ghost fork [flags] * [ghost](ghost.md) - CLI for managing Postgres databases * [ghost fork dedicated](ghost_fork_dedicated.md) - Fork a database as dedicated - diff --git a/docs/cli/ghost_fork_dedicated.md b/docs/cli/ghost_fork_dedicated.md index 2440bfe..1480d75 100644 --- a/docs/cli/ghost_fork_dedicated.md +++ b/docs/cli/ghost_fork_dedicated.md @@ -62,4 +62,3 @@ ghost fork dedicated [flags] ### SEE ALSO * [ghost fork](ghost_fork.md) - Fork a database - diff --git a/docs/cli/ghost_invoice.md b/docs/cli/ghost_invoice.md index 1633a62..4724759 100644 --- a/docs/cli/ghost_invoice.md +++ b/docs/cli/ghost_invoice.md @@ -32,4 +32,3 @@ View invoices for your Ghost space. * [ghost](ghost.md) - CLI for managing Postgres databases * [ghost invoice list](ghost_invoice_list.md) - List invoices * [ghost invoice view](ghost_invoice_view.md) - View invoice detail - diff --git a/docs/cli/ghost_invoice_list.md b/docs/cli/ghost_invoice_list.md index 5f08f3f..2fba0f8 100644 --- a/docs/cli/ghost_invoice_list.md +++ b/docs/cli/ghost_invoice_list.md @@ -38,4 +38,3 @@ ghost invoice list [flags] ### SEE ALSO * [ghost invoice](ghost_invoice.md) - View invoices - diff --git a/docs/cli/ghost_invoice_view.md b/docs/cli/ghost_invoice_view.md index dcc09e3..93ae024 100644 --- a/docs/cli/ghost_invoice_view.md +++ b/docs/cli/ghost_invoice_view.md @@ -38,4 +38,3 @@ ghost invoice view [flags] ### SEE ALSO * [ghost invoice](ghost_invoice.md) - View invoices - diff --git a/docs/cli/ghost_list.md b/docs/cli/ghost_list.md index d8ae3a9..fc184f5 100644 --- a/docs/cli/ghost_list.md +++ b/docs/cli/ghost_list.md @@ -49,4 +49,3 @@ ghost list [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_login.md b/docs/cli/ghost_login.md index cf5ecde..fed475d 100644 --- a/docs/cli/ghost_login.md +++ b/docs/cli/ghost_login.md @@ -48,4 +48,3 @@ ghost login [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_logout.md b/docs/cli/ghost_logout.md index ae7ebe5..cddb107 100644 --- a/docs/cli/ghost_logout.md +++ b/docs/cli/ghost_logout.md @@ -34,4 +34,3 @@ ghost logout [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_logs.md b/docs/cli/ghost_logs.md index 462a2e6..6c71d3c 100644 --- a/docs/cli/ghost_logs.md +++ b/docs/cli/ghost_logs.md @@ -58,4 +58,3 @@ ghost logs [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_mcp.md b/docs/cli/ghost_mcp.md index e0fa28b..2794f88 100644 --- a/docs/cli/ghost_mcp.md +++ b/docs/cli/ghost_mcp.md @@ -38,4 +38,3 @@ Exposes Ghost CLI functionality as MCP tools for Claude and other AI assistants. * [ghost mcp start](ghost_mcp_start.md) - Start the Ghost MCP server * [ghost mcp status](ghost_mcp_status.md) - Show Ghost MCP configuration status for supported clients * [ghost mcp uninstall](ghost_mcp_uninstall.md) - Uninstall Ghost MCP server configuration from a client - diff --git a/docs/cli/ghost_mcp_get.md b/docs/cli/ghost_mcp_get.md index 45243cb..73b2b08 100644 --- a/docs/cli/ghost_mcp_get.md +++ b/docs/cli/ghost_mcp_get.md @@ -52,4 +52,3 @@ ghost mcp get [flags] ### SEE ALSO * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server - diff --git a/docs/cli/ghost_mcp_install.md b/docs/cli/ghost_mcp_install.md index 88c5acf..546428b 100644 --- a/docs/cli/ghost_mcp_install.md +++ b/docs/cli/ghost_mcp_install.md @@ -78,4 +78,3 @@ ghost mcp install [client] [flags] ### SEE ALSO * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server - diff --git a/docs/cli/ghost_mcp_list.md b/docs/cli/ghost_mcp_list.md index c39ee7f..3f1f7f3 100644 --- a/docs/cli/ghost_mcp_list.md +++ b/docs/cli/ghost_mcp_list.md @@ -51,4 +51,3 @@ ghost mcp list [flags] ### SEE ALSO * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server - diff --git a/docs/cli/ghost_mcp_start.md b/docs/cli/ghost_mcp_start.md index 4d1fefb..3a06a36 100644 --- a/docs/cli/ghost_mcp_start.md +++ b/docs/cli/ghost_mcp_start.md @@ -49,4 +49,3 @@ ghost mcp start [flags] * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server * [ghost mcp start http](ghost_mcp_start_http.md) - Start MCP server with HTTP transport * [ghost mcp start stdio](ghost_mcp_start_stdio.md) - Start MCP server with stdio transport - diff --git a/docs/cli/ghost_mcp_start_http.md b/docs/cli/ghost_mcp_start_http.md index 652f901..04e393d 100644 --- a/docs/cli/ghost_mcp_start_http.md +++ b/docs/cli/ghost_mcp_start_http.md @@ -52,4 +52,3 @@ ghost mcp start http [flags] ### SEE ALSO * [ghost mcp start](ghost_mcp_start.md) - Start the Ghost MCP server - diff --git a/docs/cli/ghost_mcp_start_stdio.md b/docs/cli/ghost_mcp_start_stdio.md index a081f1e..845fff9 100644 --- a/docs/cli/ghost_mcp_start_stdio.md +++ b/docs/cli/ghost_mcp_start_stdio.md @@ -41,4 +41,3 @@ ghost mcp start stdio [flags] ### SEE ALSO * [ghost mcp start](ghost_mcp_start.md) - Start the Ghost MCP server - diff --git a/docs/cli/ghost_mcp_status.md b/docs/cli/ghost_mcp_status.md index 2d5c0b8..2ee2bae 100644 --- a/docs/cli/ghost_mcp_status.md +++ b/docs/cli/ghost_mcp_status.md @@ -52,4 +52,3 @@ ghost mcp status [client] [flags] ### SEE ALSO * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server - diff --git a/docs/cli/ghost_mcp_uninstall.md b/docs/cli/ghost_mcp_uninstall.md index 221b851..3345166 100644 --- a/docs/cli/ghost_mcp_uninstall.md +++ b/docs/cli/ghost_mcp_uninstall.md @@ -56,4 +56,3 @@ ghost mcp uninstall [client] [flags] ### SEE ALSO * [ghost mcp](ghost_mcp.md) - Ghost Model Context Protocol (MCP) server - diff --git a/docs/cli/ghost_password.md b/docs/cli/ghost_password.md index f94c476..4228e56 100644 --- a/docs/cli/ghost_password.md +++ b/docs/cli/ghost_password.md @@ -57,4 +57,3 @@ ghost password [new-password] [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_pause.md b/docs/cli/ghost_pause.md index 986de6e..0a886ba 100644 --- a/docs/cli/ghost_pause.md +++ b/docs/cli/ghost_pause.md @@ -41,4 +41,3 @@ ghost pause [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_payment.md b/docs/cli/ghost_payment.md index 7189744..e36d46e 100644 --- a/docs/cli/ghost_payment.md +++ b/docs/cli/ghost_payment.md @@ -39,4 +39,3 @@ ghost payment [flags] * [ghost payment list](ghost_payment_list.md) - List payment methods * [ghost payment primary](ghost_payment_primary.md) - Set the primary payment method * [ghost payment undelete](ghost_payment_undelete.md) - Cancel a pending payment method deletion - diff --git a/docs/cli/ghost_payment_add.md b/docs/cli/ghost_payment_add.md index 4eae16e..7447eeb 100644 --- a/docs/cli/ghost_payment_add.md +++ b/docs/cli/ghost_payment_add.md @@ -34,4 +34,3 @@ ghost payment add [flags] ### SEE ALSO * [ghost payment](ghost_payment.md) - Manage payment methods - diff --git a/docs/cli/ghost_payment_delete.md b/docs/cli/ghost_payment_delete.md index d88a83c..4504622 100644 --- a/docs/cli/ghost_payment_delete.md +++ b/docs/cli/ghost_payment_delete.md @@ -45,4 +45,3 @@ ghost payment delete [flags] ### SEE ALSO * [ghost payment](ghost_payment.md) - Manage payment methods - diff --git a/docs/cli/ghost_payment_list.md b/docs/cli/ghost_payment_list.md index dab1d09..900cecc 100644 --- a/docs/cli/ghost_payment_list.md +++ b/docs/cli/ghost_payment_list.md @@ -36,4 +36,3 @@ ghost payment list [flags] ### SEE ALSO * [ghost payment](ghost_payment.md) - Manage payment methods - diff --git a/docs/cli/ghost_payment_primary.md b/docs/cli/ghost_payment_primary.md index 03108e0..0873555 100644 --- a/docs/cli/ghost_payment_primary.md +++ b/docs/cli/ghost_payment_primary.md @@ -41,4 +41,3 @@ ghost payment primary [flags] ### SEE ALSO * [ghost payment](ghost_payment.md) - Manage payment methods - diff --git a/docs/cli/ghost_payment_undelete.md b/docs/cli/ghost_payment_undelete.md index c8b3049..e025b65 100644 --- a/docs/cli/ghost_payment_undelete.md +++ b/docs/cli/ghost_payment_undelete.md @@ -41,4 +41,3 @@ ghost payment undelete [flags] ### SEE ALSO * [ghost payment](ghost_payment.md) - Manage payment methods - diff --git a/docs/cli/ghost_pricing.md b/docs/cli/ghost_pricing.md index 2cd16c1..d0f46cb 100644 --- a/docs/cli/ghost_pricing.md +++ b/docs/cli/ghost_pricing.md @@ -36,4 +36,3 @@ ghost pricing [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_psql.md b/docs/cli/ghost_psql.md index 0da7a97..874534e 100644 --- a/docs/cli/ghost_psql.md +++ b/docs/cli/ghost_psql.md @@ -51,4 +51,3 @@ ghost psql [-- ...] [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_rename.md b/docs/cli/ghost_rename.md index b6b1221..7140853 100644 --- a/docs/cli/ghost_rename.md +++ b/docs/cli/ghost_rename.md @@ -41,4 +41,3 @@ ghost rename [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_resume.md b/docs/cli/ghost_resume.md index e18c425..4a4ce22 100644 --- a/docs/cli/ghost_resume.md +++ b/docs/cli/ghost_resume.md @@ -45,4 +45,3 @@ ghost resume [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_schema.md b/docs/cli/ghost_schema.md index 5c0cd25..da66fd2 100644 --- a/docs/cli/ghost_schema.md +++ b/docs/cli/ghost_schema.md @@ -41,4 +41,3 @@ ghost schema [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_share.md b/docs/cli/ghost_share.md index f883700..330bfc4 100644 --- a/docs/cli/ghost_share.md +++ b/docs/cli/ghost_share.md @@ -63,4 +63,3 @@ ghost share [flags] * [ghost](ghost.md) - CLI for managing Postgres databases * [ghost share list](ghost_share_list.md) - List database shares * [ghost share revoke](ghost_share_revoke.md) - Revoke a database share - diff --git a/docs/cli/ghost_share_list.md b/docs/cli/ghost_share_list.md index 40d82c7..721f314 100644 --- a/docs/cli/ghost_share_list.md +++ b/docs/cli/ghost_share_list.md @@ -36,4 +36,3 @@ ghost share list [flags] ### SEE ALSO * [ghost share](ghost_share.md) - Share a database - diff --git a/docs/cli/ghost_share_revoke.md b/docs/cli/ghost_share_revoke.md index 3332333..044b305 100644 --- a/docs/cli/ghost_share_revoke.md +++ b/docs/cli/ghost_share_revoke.md @@ -36,4 +36,3 @@ ghost share revoke [flags] ### SEE ALSO * [ghost share](ghost_share.md) - Share a database - diff --git a/docs/cli/ghost_sql.md b/docs/cli/ghost_sql.md index 2100848..ddceedb 100644 --- a/docs/cli/ghost_sql.md +++ b/docs/cli/ghost_sql.md @@ -58,4 +58,3 @@ ghost sql [query] [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_status.md b/docs/cli/ghost_status.md index 5c401d0..a943cd8 100644 --- a/docs/cli/ghost_status.md +++ b/docs/cli/ghost_status.md @@ -45,4 +45,3 @@ ghost status [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_upgrade.md b/docs/cli/ghost_upgrade.md index 8298a2f..fa163f4 100644 --- a/docs/cli/ghost_upgrade.md +++ b/docs/cli/ghost_upgrade.md @@ -36,4 +36,3 @@ ghost upgrade [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases - diff --git a/docs/cli/ghost_version.md b/docs/cli/ghost_version.md index 1cdc0c8..cb984c5 100644 --- a/docs/cli/ghost_version.md +++ b/docs/cli/ghost_version.md @@ -37,4 +37,3 @@ ghost version [flags] ### SEE ALSO * [ghost](ghost.md) - CLI for managing Postgres databases -