Skip to content

Commit

Permalink
fix(travis ci): fix an error
Browse files Browse the repository at this point in the history
Fix an error when the find command is used
  • Loading branch information
giulio-coa committed Aug 5, 2022
1 parent 82a7cbf commit 699f727
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
arch: amd64
script:
- shellcheck -x auto_install/install.sh
- find scripts/ -type f | xargs shellcheck -x
- find scripts/ -type f -exec shellcheck -x {} \;

- stage: style
name: "Shell Style Guide"
Expand All @@ -42,7 +42,7 @@ jobs:
arch: amd64
script:
- 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
name: "OpenVPN Xenial & Commands"
Expand Down

0 comments on commit 699f727

Please sign in to comment.