The syntax of check_symbol_change uses some bash syntax. It does not run correctly on Debian where /bin/sh is not the same as /bin/bash.
Fixes: 4bec48184e33 ("devtools: add checks for ABI symbol addition") Signed-off-by: Stephen Hemminger <step...@networkplumber.org> --- devtools/check-symbol-change.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/check-symbol-change.sh b/devtools/check-symbol-change.sh index 40b72073a975..19035a8d40e4 100755 --- a/devtools/check-symbol-change.sh +++ b/devtools/check-symbol-change.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Neil Horman <nhor...@tuxdriver.com> -- 2.18.0