From a817c3e6788473fd90ddf1f3bca0e8e9149cc57c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 6 Nov 2021 13:35:30 -0400 Subject: [PATCH] Add start delineators to command output --- format | 2 +- lint | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/format b/format index fdc3e267..434185f7 100755 --- a/format +++ b/format @@ -11,7 +11,7 @@ fi pushd $( git rev-parse --show-toplevel ) &>/dev/null -echo "Formatting..." +echo ">>> Formatting..." black --safe ${check} --exclude api-daemon/migrations . ret=$? if [[ $ret -eq 0 ]]; then diff --git a/lint b/lint index a38e1d4b..7bd17bc5 100755 --- a/lint +++ b/lint @@ -7,7 +7,7 @@ fi pushd $( git rev-parse --show-toplevel ) &>/dev/null -echo "Linting..." +echo ">>> Linting..." flake8 ret=$? if [[ $ret -eq 0 ]]; then