verify-cli-conventions.sh: use $(..) instead of `..`.

Using $(..) is the recommended way of running subshells. It also is the
convention used almost every place in kubernetes scripts.
pull/8/head
Ismo Puustinen 2018-02-08 12:12:55 +02:00
parent 03b674bc86
commit 07d6283521
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ make -C "${KUBE_ROOT}" WHAT="${BINS[*]}"
clicheck=$(kube::util::find-binary "clicheck")
if ! output=`$clicheck 2>&1`
if ! output=$($clicheck 2>&1)
then
echo "$output"
echo