Skip to content

Commit

Permalink
FEATURE: make synco more resilient
Browse files Browse the repository at this point in the history
  • Loading branch information
skurfuerst committed May 16, 2024
1 parent c2fbe46 commit a3c6205
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/frameworks/flowServe/flowServe.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ func (f flowServe) extractAllResourcesFromFolder(transferSession *serve.Transfer
}
realFileInfo, err := os.Lstat(realPath)
if err != nil {
return err
pterm.Error.Printfln("Could NOT read file (skipping): %s: %s", realPath, err)
return nil
}

filePath = strings.TrimPrefix(filePath, persistentResourcesBasePath)
Expand Down

0 comments on commit a3c6205

Please sign in to comment.