mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
7 lines
244 B
Bash
Executable file
7 lines
244 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Checking bash scripts with shellcheck" >&2
|
|
|
|
while IFS= read -r shellfile; do
|
|
shellcheck --check-sourced --severity=style --color=always --exclude=SC2164,SC2086,SC2012,SC2016 ${shellfile}
|
|
done < <(find ./build -name "*.sh")
|