-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add ut cases for command gen dao
#2958
Conversation
Codecov ReportPatch coverage:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #2958 +/- ##
==========================================
- Coverage 79.18% 79.09% -0.09%
==========================================
Files 642 643 +1
Lines 52597 52744 +147
==========================================
+ Hits 41648 41718 +70
- Misses 8876 8944 +68
- Partials 2073 2082 +9
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
@@ -86,7 +171,8 @@ func CopyFile(src, dst string) (err error) { | |||
// CopyDir recursively copies a directory tree, attempting to preserve permissions. | |||
// | |||
// Note that, the Source directory must exist and symlinks are ignored and skipped. | |||
func CopyDir(src string, dst string) (err error) { | |||
func CopyDir(src string, dst string, option ...CopyOption) (err error) { | |||
var usedOption = getCopyOption(option...) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里是不是可以滞后处理呢?
No description provided.