From 07bc74aa65bd52ec871b93e4ef9b49e2afc48cf5 Mon Sep 17 00:00:00 2001 From: Matthew Skinner Date: Fri, 13 Dec 2024 20:58:27 -0600 Subject: [PATCH] update readme --- README.md | 2 +- cmd/info.go | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4b10aa0..1e421b3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ dg -

+
An open source CLI wrapper for dbt/git that aims to increase DX for Analytics Engineers. ## Table of Contents diff --git a/cmd/info.go b/cmd/info.go index 1c52b4d..f9d4f81 100644 --- a/cmd/info.go +++ b/cmd/info.go @@ -23,12 +23,12 @@ func runInfo(cmd *cobra.Command, args []string) error { asciiArt := style.GetASCIIArt() copyright := "Copyright © 2024 Matthew Skinner" contact := "matthew@skinnerdev.com" - + github := "https://github.com/cognite-analytics/dbt-go" width := 80 centeredCopyright := style.CenterText(copyright, width) centeredContact := style.CenterText(contact, width) - + centeredLink := style.CenterText(github, width) lines := strings.Split(asciiArt, "\n") centeredLines := make([]string, len(lines)) for i, line := range lines { @@ -43,6 +43,7 @@ func runInfo(cmd *cobra.Command, args []string) error { %s %s -`, centeredAsciiArt, centeredCopyright, centeredContact) +%s +`, centeredAsciiArt, centeredCopyright, centeredContact, centeredLink) return nil }