*
Jes Olson j3s@c3f.net
Sat, 01 Oct 2022 15:38:33 -0500
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
shell/shell.go
→
shell/shell.go
@@ -32,7 +32,7 @@ }
r, err = interp.New( // TODO: make debug flag enable stdout - interp.StdIO(nil, nil, os.Stdout), + interp.StdIO(nil, os.Stdout, os.Stdout), interp.CallHandler(CallHandler), interp.Env(envs), )@@ -147,7 +147,7 @@ dstChk = ""
} if srcChk == dstChk { - fmt.Println("file unchanged") + fmt.Println(dst + " unchanged") return false, nil } // TODO: pass the file through a templating engine