Skip to content

Commit

Permalink
fixup ci
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
  • Loading branch information
fredbi committed Dec 5, 2023
1 parent d1d6372 commit 52e2cf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ jobs:
- uses: golangci/golangci-lint-action@v2
with:
version: latest
only-new-issues: true
args: --timeout=5m
args: --timeout=5m --new-from-rev master

build:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion loading.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func LoadStrategy(pth string, local, remote func(string) ([]byte, error)) func(s
}

return func(p string) ([]byte, error) {
upth, err := url.PathUnescape(p)
upth, err := pathUnescape(p)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 52e2cf9

Please sign in to comment.