Skip to content

Commit

Permalink
style: Adding a cute ascii art of Archway for the cli (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
spoo-bar authored Jun 28, 2024
1 parent 53405f4 commit 4526629
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ Contains all the PRs that improved the code without changing the behaviors.

## [v8.0.0](https://github.com/archway-network/archway/releases/tag/v8.0.0)

### Added
- [#577](https://github.com/archway-network/archway/pull/577) - Adding a cute ascii art of Archway for the cli

### Changed
- [#573](https://github.com/archway-network/archway/pull/573) - Bump cosmos-sdk to v0.50.6 and ibc to v8.2.1

Expand Down
11 changes: 11 additions & 0 deletions cmd/archwayd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ import (
"github.com/archway-network/archway/app"
)

const ArchwayASCII = `
##### ##### ##### ## ## ## ## ##### ## ##
####### ####### ####### ## ## ## ## ####### ## ##
## ## ## ## ## ## ## ## # ## ## ## ## ##
## ## ###### ## #### ## ####### ## ## ####
####### ## ## ## ## ## ## ####### ####### ##
## ## ## ## ####### ## ## ### ### ## ## ##
## ## ## ## ##### ## ## ## ## ## ## ##
`

func main() {
rootCmd, _ := NewRootCmd()

Expand Down
2 changes: 1 addition & 1 deletion cmd/archwayd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {

rootCmd := &cobra.Command{
Use: version.AppName,
Short: "Archway Daemon (server)",
Short: ArchwayASCII,
PersistentPreRunE: func(cmd *cobra.Command, _ []string) error {
// set the default command outputs
cmd.SetOut(cmd.OutOrStdout())
Expand Down

0 comments on commit 4526629

Please sign in to comment.