From: Darren Tucker Date: Thu, 21 Oct 2021 05:53:39 +0000 (+1100) Subject: Don't use 'here string", it's not POSIX. X-Git-Tag: V_8_9_P1~225 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c626cc563e8d21d844d06f9971a9ee01de6aa2a;p=thirdparty%2Fopenssh-portable.git Don't use 'here string", it's not POSIX. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index c0f48f374..75e087b22 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -29,7 +29,7 @@ for TARGET in $TARGETS; do # nothing to do ;; clang-*|gcc-*) - compiler=$(sed 's/-Werror//' <<<$TARGET) + compiler=$(echo $TARGET | sed 's/-Werror//') PACKAGES="$PACKAGES $compiler" ;; kerberos5)