You are here

lint-sh.sh in Convert Media Tags to Markup 8

Same filename and directory in other branches
  1. 2.x scripts/lint-sh.sh
#!/bin/bash
#
# Lint shell scripts.
#
set -e

find . -name "*.sh" -print0 | \
  xargs -0 docker run --rm -v "$(pwd)":/code dcycle/shell-lint

File

scripts/lint-sh.sh
View source
  1. #!/bin/bash
  2. #
  3. # Lint shell scripts.
  4. #
  5. set -e
  6. find . -name "*.sh" -print0 | \
  7. xargs -0 docker run --rm -v "$(pwd)":/code dcycle/shell-lint