Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
skinnms committed Dec 14, 2024
1 parent 1eacb9a commit 07bc74a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<img src=".img/logo.png" alt="dg" width="200">
<br><br>
<br>
An open source CLI wrapper for dbt/git that aims to increase DX for Analytics Engineers.

## Table of Contents
Expand Down
7 changes: 4 additions & 3 deletions cmd/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ func runInfo(cmd *cobra.Command, args []string) error {
asciiArt := style.GetASCIIArt()
copyright := "Copyright © 2024 Matthew Skinner"
contact := "[email protected]"

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 {
Expand All @@ -43,6 +43,7 @@ func runInfo(cmd *cobra.Command, args []string) error {
%s
%s
`, centeredAsciiArt, centeredCopyright, centeredContact)
%s
`, centeredAsciiArt, centeredCopyright, centeredContact, centeredLink)
return nil
}

0 comments on commit 07bc74a

Please sign in to comment.