Skip to content

Commit

Permalink
Added -custom flag, bug fixes for v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmit0920 committed Jul 18, 2024
1 parent 9200a27 commit ec2f8b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
### Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Expand Down
Binary file modified fidy.exe
Binary file not shown.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ func main() {
// Default message without flags
if len(os.Args) == 1 {
if config.Name != "" {
fmt.Printf("\nHey, I am Fidy. Nice to see you, %s!\n", config.Name)
fmt.Printf("\nHey, I am Fidy. Nice to see you, %s!\n\n", config.Name)
} else {
fmt.Printf("\nHey, I am Fidy. You can let me know your name by using 'fidy -name YOUR_NAME' for our future conversations!\n")
fmt.Printf("\nHey, I am Fidy. You can let me know your name by using 'fidy -name YOUR_NAME' for our future conversations!\n\n")
}
}

Expand Down Expand Up @@ -127,7 +127,7 @@ func main() {
}

if *version {
fmt.Printf("\nFidy version %s\n", ver)
fmt.Printf("\nFidy version %s\n\n", ver)
return
}

Expand Down

0 comments on commit ec2f8b1

Please sign in to comment.