From 7e2e82d9567675f10967ac34504ccdad76d45351 Mon Sep 17 00:00:00 2001 From: cdce8p <30130371+cdce8p@users.noreply.github.com> Date: Thu, 15 Feb 2018 07:01:30 +0100 Subject: [PATCH] Print every changed file on new line (#12412) --- script/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lint b/script/lint index ab7561b9a5b..102dd84a407 100755 --- a/script/lint +++ b/script/lint @@ -8,7 +8,7 @@ if [ "$1" = "--changed" ]; then echo "=================================================" echo "FILES CHANGED (git diff upstream/dev --name-only)" echo "=================================================" - echo $files + printf "%s\n" $files echo "================" echo "LINT with flake8" echo "================"