fix: build error
This commit is contained in:
parent
599ce784d2
commit
a974e810c2
2 changed files with 1 additions and 39 deletions
38
.github/workflows/test_author.yml
vendored
38
.github/workflows/test_author.yml
vendored
|
@ -1,38 +0,0 @@
|
||||||
name: Test Change Author Name
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- Alpha
|
|
||||||
pull_request_target:
|
|
||||||
branches:
|
|
||||||
- Alpha
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update-dependencies:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout Repository
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Configure Git
|
|
||||||
run: |
|
|
||||||
git config --global user.name 'gVisor bot'
|
|
||||||
git config --global user.email 'gvisor-bot@google.com'
|
|
||||||
|
|
||||||
- name: Change Author Name
|
|
||||||
run: |
|
|
||||||
git fetch origin
|
|
||||||
git checkout origin/Alpha -b test-author
|
|
||||||
git filter-branch -f --env-filter "
|
|
||||||
GIT_AUTHOR_NAME='gVisor bot'
|
|
||||||
GIT_AUTHOR_EMAIL='gvisor-bot@google.com'
|
|
||||||
GIT_COMMITTER_NAME='gVisor bot'
|
|
||||||
GIT_COMMITTER_EMAIL='gvisor-bot@google.com'
|
|
||||||
" HEAD
|
|
||||||
|
|
||||||
- name: Push changes
|
|
||||||
run: |
|
|
||||||
git push origin test-author --force
|
|
|
@ -500,7 +500,7 @@ func NewResolver(config Config) *Resolver {
|
||||||
log.Debugln("adding geosite policy: %s inversed %t", key, inverse)
|
log.Debugln("adding geosite policy: %s inversed %t", key, inverse)
|
||||||
matcher, err := NewGeoSite(key)
|
matcher, err := NewGeoSite(key)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Warnln("adding geosite policy %s error: %s", key)
|
log.Warnln("adding geosite policy %s error: %s", key, err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
insertTriePolicy()
|
insertTriePolicy()
|
||||||
|
|
Loading…
Reference in a new issue