From 434f9a09fabd8238c709e656da0e3aa10bf7339a Mon Sep 17 00:00:00 2001 From: Rahix <rahix@rahix.de> Date: Thu, 15 Aug 2019 16:57:42 +0200 Subject: [PATCH] fix(code-style): Fix shebang & output Signed-off-by: Rahix <rahix@rahix.de> --- tools/code-style.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/code-style.sh b/tools/code-style.sh index 1e150fab..3256654a 100755 --- a/tools/code-style.sh +++ b/tools/code-style.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e ########################### @@ -72,6 +72,6 @@ for source_file in "$@"; do echo -e "\tBLACK\t\t$source_file" black -q "$source_file" else - echo " - Ignoring $source_file" >&2 + echo -e "\tIGN\t\t$source_file" fi done -- GitLab