HADOOP-12035. shellcheck plugin displays a wrong version potentially (Kengo Seki via aw)

This commit is contained in:
Allen Wittenauer 2015-05-28 09:11:08 -07:00
parent 87c26f8b7d
commit f1cea9c6bf
2 changed files with 4 additions and 1 deletions

View File

@ -72,7 +72,7 @@ function shellcheck_preapply
start_clock
# shellcheck disable=SC2016
SHELLCHECK_VERSION=$(shellcheck --version | ${GREP} version: | ${AWK} '{print $NF}')
SHELLCHECK_VERSION=$(${SHELLCHECK} --version | ${GREP} version: | ${AWK} '{print $NF}')
echo "Running shellcheck against all identifiable shell scripts"
pushd "${BASEDIR}" >/dev/null

View File

@ -765,6 +765,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12004. test-patch breaks with reexec in certain situations (Sean
Busbey via aw)
HADOOP-12035. shellcheck plugin displays a wrong version potentially
(Kengo Seki via aw)
Release 2.7.1 - UNRELEASED
INCOMPATIBLE CHANGES