2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2024-09-19 10:39:02 +00:00

ci: fix check format script

[skip travis]
This commit is contained in:
Revant Nandgaonkar 2021-06-24 17:43:25 +05:30
parent 577f93a3b7
commit f0399fa389

View File

@ -2,10 +2,6 @@
echo "Checking bash scripts with shellcheck" >&2 echo "Checking bash scripts with shellcheck" >&2
shellcheck --check-sourced --severity=style --color=always --exclude=SC2164,SC2086,SC2012,SC2016 \ while IFS= read -r shellfile; do
build/common/worker/docker-entrypoint.sh \ shellcheck --check-sourced --severity=style --color=always --exclude=SC2164,SC2086,SC2012,SC2016 ${shellfile}
build/common/worker/healthcheck.sh \ done < <(find ./build -name "*.sh")
build/common/worker/install_app.sh \
build/erpnext-nginx/install_app.sh \
build/frappe-nginx/docker-entrypoint.sh \
build/frappe-socketio/docker-entrypoint.sh