Skip to content

Commit 67cb223

Browse files
authored
fix: no quiet mode :(
1 parent 8708a79 commit 67cb223

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/lint-changed.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ if [ ${#CHANGED_FILES[@]} -gt 0 ]; then
5656

5757
# adding -q to silence some of the extraneous logging
5858
echo "Running blacken..."
59-
nox -q -s blacken -- "${CHANGED_FILES[@]}" || BLACK_EXIT=$?
59+
nox -s blacken -- "${CHANGED_FILES[@]}" || BLACK_EXIT=$?
6060

6161
echo "Running flake8 lint..."
62-
nox -q -s lint -- "${CHANGED_FILES[@]}" || LINT_EXIT=$?
62+
nox -s lint -- "${CHANGED_FILES[@]}" || LINT_EXIT=$?
6363

6464
if [ $BLACK_EXIT -ne 0 ] || [ $LINT_EXIT -ne 0 ]; then
6565
echo "❌ One or more linting checks failed."

0 commit comments

Comments
 (0)