fix: use log.E instead of errors.E in cmd_file_sync
This commit is contained in:
parent
ffae35cb73
commit
dbe5393695
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ func runFileSync(source string) error {
|
|||
// Convert to absolute path for io.Local
|
||||
absSource, err := filepath.Abs(source)
|
||||
if err != nil {
|
||||
return errors.E("dev.sync", "failed to resolve source path", err)
|
||||
return log.E("dev.sync", "failed to resolve source path", err)
|
||||
}
|
||||
|
||||
// Validate source exists using io.Local.Stat
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue