diff options
author | Darren Tucker <dtucker@dtucker.net> | 2021-10-21 07:53:39 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2021-10-21 07:53:39 +0200 |
commit | 8c626cc563e8d21d844d06f9971a9ee01de6aa2a (patch) | |
tree | f0376de400ba06e2141c93b0152ef516f6c22b44 /.github | |
parent | Remove -Werror from compiler package to install. (diff) | |
download | openssh-8c626cc563e8d21d844d06f9971a9ee01de6aa2a.tar.xz openssh-8c626cc563e8d21d844d06f9971a9ee01de6aa2a.zip |
Don't use 'here string", it's not POSIX.
Diffstat (limited to '.github')
-rwxr-xr-x | .github/setup_ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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) |