From a68f1900936ac08858829e74cb2c5168bba8ba31 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 12 Jul 2019 13:36:44 +0300 Subject: [PATCH] Don't output the filename in dockerfile-lint. dockerfile_lint shows the filename clearly, there's no need to output the filename again (it shows up at the end of the output, very confusing). --- dockerfile-lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile-lint b/dockerfile-lint index c0b11ad..fe41a0b 100755 --- a/dockerfile-lint +++ b/dockerfile-lint @@ -1,4 +1,4 @@ #!/bin/sh set -eu -echo "$@" | xargs -rtn1 dockerfile_lint --dockerfile +echo "$@" | xargs -rn1 dockerfile_lint --dockerfile -- GitLab