Fixed from cat to Cat function.
This commit is contained in:
parent
d3a7d7a0a8
commit
c7e44cfabb
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ func Run(args []string) int {
|
||||||
args = flagSet.Args()
|
args = flagSet.Args()
|
||||||
if len(args)>0 {
|
if len(args)>0 {
|
||||||
for _, p := range args {
|
for _, p := range args {
|
||||||
e := cat(p)
|
e := Cat(p)
|
||||||
if e != nil {
|
if e != nil {
|
||||||
fmt.Fprintf(os.Stderr, "%s: %s.\n", arg0, e)
|
fmt.Fprintf(os.Stderr, "%s: %s.\n", arg0, e)
|
||||||
status = 1
|
status = 1
|
||||||
|
|
Loading…
Reference in a new issue