-
Notifications
You must be signed in to change notification settings - Fork 118
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
chore: update the go.mod file to fix minor issues #883
chore: update the go.mod file to fix minor issues #883
Conversation
Thanks for making a pull request! 😃 |
Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
Thanks for making a pull request! 😃 |
ecd89ff
to
6b8512d
Compare
Codecov ReportBase: 18.40% // Head: 18.40% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## main #883 +/- ##
=======================================
Coverage 18.40% 18.40%
=======================================
Files 46 46
Lines 3672 3672
=======================================
Hits 676 676
Misses 2831 2831
Partials 165 165 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
relpath, err := filepath.Rel(inputPath, path) | ||
if err != nil { | ||
logrus.Errorf("failed to make the directory %s relative to the input directory %s . Error: %q", path, inputPath, err) | ||
continue |
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.
Since it is only for log, we need not continue, but rather print error and proceed to log.
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.
Even if it is only for log it should not fail. I have made the change.
Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
Signed-off-by: Harikrishnan Balagopal harikrishmenon@gmail.com