Skip to content

Commit

Permalink
fix(cmd/gnoland): fixup startup ascii art (gnolang#1942)
Browse files Browse the repository at this point in the history
This is _very_ important
  • Loading branch information
thehowl committed Apr 19, 2024
1 parent c628334 commit 2f72f84
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions gno.land/cmd/gnoland/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@ import (
"go.uber.org/zap/zapcore"
)

var startGraphic = fmt.Sprintf(`
__ __
____ _____ ____ / /___ _____ ____/ /
/ __ %c/ __ \/ __ \/ / __ %c/ __ \/ __ /
/ /_/ / / / / /_/ / / /_/ / / / / /_/ /
\__, /_/ /_/\____/_/\__,_/_/ /_/\__,_/
/____/
`, '`', '`')
var startGraphic = strings.ReplaceAll(`
__ __
___ ____ ___ / /__ ____ ___/ /
/ _ '/ _ \/ _ \_ / / _ '/ _ \/ _ /
\_, /_//_/\___(_)_/\_,_/_//_/\_,_/
/___/
`, "'", "`")

type startCfg struct {
gnoRootDir string
Expand Down

0 comments on commit 2f72f84

Please sign in to comment.