-
Notifications
You must be signed in to change notification settings - Fork 67
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
Export copyFile
#106
Export copyFile
#106
Conversation
Where is this planned on being used? I know we had some plans for this and possibly merging it with some functionality for buildkit's fsutil and Moby. I am fine merging this and changing it later if we need to though. LGTM |
I was going to use this for something... what I don't remember... maybe it was in moby. |
fs/copy.go
Outdated
func copyFile(source, target string) error { | ||
// CopyFile copies the source file to the target. | ||
// The most efficient means of copying is used for the platform. | ||
func CopyFile(source, target string) error { |
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.
We usually use LHS notation for the args in this package.
Should be CopyFile(target, source string)
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.
Fixed
Signed-off-by: Brian Goff <[email protected]>
389ac27
to
d59f454
Compare
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.
LGTM
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.
LGTM
No description provided.