all: remove use of pkg/errors and replace with standard library#101
Merged
efd6 merged 1 commit intoelastic:mainfrom Feb 3, 2022
Merged
all: remove use of pkg/errors and replace with standard library#101efd6 merged 1 commit intoelastic:mainfrom
efd6 merged 1 commit intoelastic:mainfrom
Conversation
Collaborator
💚 Build Succeeded
Expand to view the summary
Build stats
Test stats 🧪
|
ecceb3c to
b071ff6
Compare
git-generate script assumes GNU sed.
[git-generate]
echo 1.17.6 > .go-version
gofmt -w -r 'errors.Errorf -> fmt.Errorf' .
gofmt -w -r 'errors.Wrap(e, m) -> fmt.Errorf(m+": %w", e)' .
gofmt -w -r 'errors.Wrapf(e, m) -> fmt.Errorf(m+": %w", e)' .
gofmt -w -r 'errors.Wrapf(e, m, a) -> fmt.Errorf(m+": %w", a, e)' .
gofmt -w -r 'errors.Wrapf(e, m, a, b) -> fmt.Errorf(m+": %w", a, b, e)' .
gofmt -w -r 'errors.Cause(e) != t -> !errors.Is(e, t)' .
find . -name '*.go' -exec sed -i -e 's/"+": %w",/: %w",/g' '{}' \;
find . -name '*.go' -exec sed -i -e 's!"github.com/pkg/errors"$!"errors"!g' '{}' \;
find . -name '*.go' -exec sed -i -e '1h;2,$H;$!d;g' -e 's/"+\n\t*": %w/: %w/g' '{}' \;
goimports -w .
go mod tidy
gofumpt -w .
renini
pushed a commit
to renini/go-libaudit
that referenced
this pull request
Jun 26, 2024
git-generate script assumes GNU sed.
[git-generate]
echo 1.17.6 > .go-version
gofmt -w -r 'errors.Errorf -> fmt.Errorf' .
gofmt -w -r 'errors.Wrap(e, m) -> fmt.Errorf(m+": %w", e)' .
gofmt -w -r 'errors.Wrapf(e, m) -> fmt.Errorf(m+": %w", e)' .
gofmt -w -r 'errors.Wrapf(e, m, a) -> fmt.Errorf(m+": %w", a, e)' .
gofmt -w -r 'errors.Wrapf(e, m, a, b) -> fmt.Errorf(m+": %w", a, b, e)' .
gofmt -w -r 'errors.Cause(e) != t -> !errors.Is(e, t)' .
find . -name '*.go' -exec sed -i -e 's/"+": %w",/: %w",/g' '{}' \;
find . -name '*.go' -exec sed -i -e 's!"github.com/pkg/errors"$!"errors"!g' '{}' \;
find . -name '*.go' -exec sed -i -e '1h;2,$H;$!d;g' -e 's/"+\n\t*": %w/: %w/g' '{}' \;
goimports -w .
go mod tidy
gofumpt -w .
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Please take a look.
I'd like to have #92 merged before this since this is much easier to replay safely in case of conflict than that is.
Closes #99.