mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-08 14:21:05 +00:00
f0399fa389
[skip travis]
8 lines
244 B
Bash
Executable File
8 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")
|