Skip to content

Commit

Permalink
chore: fix license workflow (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
lluissm authored Jul 10, 2022
1 parent 9cfb83b commit 69d790f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ jobs:
- name: Install license-header-checker
run: curl -s https://raw.githubusercontent.com/lluissm/license-header-checker/master/install.sh | bash
- name: Run license check
run: license-header-checker -a -r -i testdata ./license_header.txt . go && [[ -z `git status -s` ]]
run: ./bin/license-header-checker -a -r -i testdata ./license_header.txt . go && [[ -z `git status -s` ]]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install license-header-checker
run: curl -s https://raw.githubusercontent.com/lluissm/license-header-checker/master/install.sh | bash
- name: Run license check
run: license-header-checker -a -r ./license_header.txt . go && [[ -z `git status -s` ]]
run: ./bin/license-header-checker -a -r -i testdata ./license_header.txt . go && [[ -z `git status -s` ]]
```
## How to install
Expand Down

0 comments on commit 69d790f

Please sign in to comment.