check-toolchain-clean.sh: fix shellcheck warnings
authorPetr Štetiar <ynezz@true.cz>
Fri, 25 Feb 2022 10:15:45 +0000 (11:15 +0100)
committerPetr Štetiar <ynezz@true.cz>
Mon, 28 Feb 2022 14:17:11 +0000 (15:17 +0100)
Fixes following complaints and suggestions:

 In scripts/check-toolchain-clean.sh line 2:
 eval `grep CONFIG_GCC_VERSION .config`
      ^-- SC2046 (warning): Quote this to prevent word splitting.
      ^-- SC2006 (style): Use $(...) notation instead of legacy backticks `...`.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
scripts/check-toolchain-clean.sh

index af24e740b7d40f122c9f53bea7d8b517ce9eccdc..34b82dec5d22c9ec3f2586bcb720e4bdd716d9ff 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-eval `grep CONFIG_GCC_VERSION .config`
+eval "$(grep CONFIG_GCC_VERSION .config)"
 CONFIG_TOOLCHAIN_BUILD_VER="$CONFIG_GCC_VERSION-$(cat toolchain/build_version)"
 touch .toolchain_build_ver
 [ "$CONFIG_TOOLCHAIN_BUILD_VER" = "$(cat .toolchain_build_ver)" ] && exit 0