Skip to content

Commit

Permalink
print colon instead of "at"
Browse files Browse the repository at this point in the history
it's a lot cleaner in most cases.
  • Loading branch information
HeCorr committed Jan 31, 2025
1 parent 20ca1a6 commit c7b239a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/task/task.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func run() error {
if fi, err := os.Stat(path); err == nil && fi.IsDir() && path != wd {
name = filepathext.SmartJoin(name, task.DefaultTaskFilename)
}
log.Outf(logger.Green, "Taskfile created at %s\n", name)
log.Outf(logger.Green, "Taskfile created: %s\n", name)
}
return nil
}
Expand Down

0 comments on commit c7b239a

Please sign in to comment.