2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-11-08 14:21:05 +00:00
frappe_docker/tests/check-format.sh
Revant Nandgaonkar f0399fa389 ci: fix check format script
[skip travis]
2021-06-24 17:43:25 +05:30

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")