log recursive find
parent
daa520de7d
commit
4c32fb0411
2
main.go
2
main.go
|
|
@ -6,6 +6,7 @@ import (
|
|||
"flag"
|
||||
"fmt"
|
||||
"io/fs"
|
||||
"log"
|
||||
"os"
|
||||
"os/signal"
|
||||
"path"
|
||||
|
|
@ -67,6 +68,7 @@ func Recursive(ctx context.Context) error {
|
|||
}
|
||||
defer os.Chdir(was)
|
||||
|
||||
log.Printf("Run(%s, %s, %+v, %+v, %v)", y.O, d, y.P, y.C, y.D)
|
||||
if err := Run(ctx, y.O, "./", y.P, y.C, y.D); err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue