From 0b1861975a6cd7ba87bf6775ecbf70b9b876886f Mon Sep 17 00:00:00 2001 From: Wojciech Olech Date: Fri, 25 Aug 2023 16:08:08 +0200 Subject: [PATCH] Update calldwell/scripts/check_code.sh Co-authored-by: Filip Demski (Glamhoth) --- calldwell/scripts/check_code.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/calldwell/scripts/check_code.sh b/calldwell/scripts/check_code.sh index 5a7ad6b0..c22c822c 100755 --- a/calldwell/scripts/check_code.sh +++ b/calldwell/scripts/check_code.sh @@ -1,4 +1,7 @@ -#!/bin/sh +#!/bin/bash + +set -euo pipefail + poetry run isort --check ./*.py poetry run black --check ./*.py poetry run flake8 ./*.py