mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 10:50:16 +00:00
fix(travis ci): fix an error
Fix an error when the find command is used
This commit is contained in:
parent
82a7cbfc27
commit
699f72712d
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ jobs:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
script:
|
script:
|
||||||
- shellcheck -x auto_install/install.sh
|
- shellcheck -x auto_install/install.sh
|
||||||
- find scripts/ -type f | xargs shellcheck -x
|
- find scripts/ -type f -exec shellcheck -x {} \;
|
||||||
|
|
||||||
- stage: style
|
- stage: style
|
||||||
name: "Shell Style Guide"
|
name: "Shell Style Guide"
|
||||||
|
@ -42,7 +42,7 @@ jobs:
|
||||||
arch: amd64
|
arch: amd64
|
||||||
script:
|
script:
|
||||||
- shfmt -d -i 2 -ci -sr auto_install/install.sh
|
- shfmt -d -i 2 -ci -sr auto_install/install.sh
|
||||||
- find scripts/ -type f | xargs shfmt -d -i 2 -ci -sr
|
- find scripts/ -type f -exec shfmt -d -i 2 -ci -sr {} \;
|
||||||
|
|
||||||
- stage: test
|
- stage: test
|
||||||
name: "OpenVPN Xenial & Commands"
|
name: "OpenVPN Xenial & Commands"
|
||||||
|
|
Loading…
Reference in a new issue