Replace io/ioutil
with preferred packages
#430
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
io/ioutil
with preferred packages.Test results
Please see workflow logs.
Details
Replacing
io/ioutil
with preferred packagesSince Go 1.16, the
io/ioutil
package has been marked as deprecated. The functions provided byio/ioutil
are now provided byio
oros
packages with no functionality change and now using these packages are preferred.Improves of Makefile
To avoid a conflict with a file or directory of the same name and to improve performance, Phony Targets are used.
For more convenience,
make clean
,make clean-cache
, andmake distclean
commands have been added.Thank you for reviewing :-)