Commit 07d62835 authored by Ismo Puustinen's avatar Ismo Puustinen

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.
parent 03b674bc
...@@ -30,7 +30,7 @@ make -C "${KUBE_ROOT}" WHAT="${BINS[*]}" ...@@ -30,7 +30,7 @@ make -C "${KUBE_ROOT}" WHAT="${BINS[*]}"
clicheck=$(kube::util::find-binary "clicheck") clicheck=$(kube::util::find-binary "clicheck")
if ! output=`$clicheck 2>&1` if ! output=$($clicheck 2>&1)
then then
echo "$output" echo "$output"
echo echo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment