summaryrefslogtreecommitdiff
path: root/.github/setup_ci.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-10-21 16:53:39 +1100
committerDarren Tucker <dtucker@dtucker.net>2021-10-21 16:53:39 +1100
commit8c626cc563e8d21d844d06f9971a9ee01de6aa2a (patch)
treef0376de400ba06e2141c93b0152ef516f6c22b44 /.github/setup_ci.sh
parent086a4b5977472aefa3de918b88efad0faf83b2b1 (diff)
downloadopenssh-git-8c626cc563e8d21d844d06f9971a9ee01de6aa2a.tar.gz
Don't use 'here string", it's not POSIX.
Diffstat (limited to '.github/setup_ci.sh')
-rwxr-xr-x.github/setup_ci.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh
index c0f48f37..75e087b2 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)