mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
Pipe find to xargs
shellchek job not exiting with propper error code due to find -exec exit code be always 0. Piping find to xargs instead to get propper exit codes from shellcheck
This commit is contained in:
parent
4d2e3ed3f8
commit
b4e9831da3
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ jobs:
|
||||||
dist: linux
|
dist: linux
|
||||||
script:
|
script:
|
||||||
- shellcheck auto_install/install.sh
|
- shellcheck auto_install/install.sh
|
||||||
- find scripts/ -type f -exec shellcheck {} \;
|
- find scripts/ -type f | xargs shellcheck
|
||||||
|
|
||||||
- stage: test
|
- stage: test
|
||||||
name: "OpenVPN Xenial & Commands"
|
name: "OpenVPN Xenial & Commands"
|
||||||
|
|
Loading…
Reference in a new issue