Add start delineators to command output

This commit is contained in:
Joshua Boniface 2021-11-06 13:35:30 -04:00
parent 0cc3f2deab
commit a817c3e678
2 changed files with 2 additions and 2 deletions

2
format
View File

@ -11,7 +11,7 @@ fi
pushd $( git rev-parse --show-toplevel ) &>/dev/null pushd $( git rev-parse --show-toplevel ) &>/dev/null
echo "Formatting..." echo ">>> Formatting..."
black --safe ${check} --exclude api-daemon/migrations . black --safe ${check} --exclude api-daemon/migrations .
ret=$? ret=$?
if [[ $ret -eq 0 ]]; then if [[ $ret -eq 0 ]]; then

2
lint
View File

@ -7,7 +7,7 @@ fi
pushd $( git rev-parse --show-toplevel ) &>/dev/null pushd $( git rev-parse --show-toplevel ) &>/dev/null
echo "Linting..." echo ">>> Linting..."
flake8 flake8
ret=$? ret=$?
if [[ $ret -eq 0 ]]; then if [[ $ret -eq 0 ]]; then