[openssh-commits] [openssh] branch master updated: Use backticks for shell portability w/ Solaris.
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu May 21 18:27:55 AEST 2026
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new 498372545 Use backticks for shell portability w/ Solaris.
498372545 is described below
commit 498372545f48effd30a4d4c005eea25b1141fc74
Author: Darren Tucker <dtucker at dtucker.net>
AuthorDate: Thu May 21 18:25:50 2026 +1000
Use backticks for shell portability w/ Solaris.
---
.github/run_test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/run_test.sh b/.github/run_test.sh
index 0a7d2656d..e99c9eef0 100755
--- a/.github/run_test.sh
+++ b/.github/run_test.sh
@@ -48,7 +48,7 @@ fi
if [ "$1" = "dropbear-versions" ]; then
make regress-binaries
# Work backward from current version to last version we support.
- for ver in master $(cd /tmp/dropbear && git tag | grep -E 'DROPBEAR_' | sort -rn); do
+ for ver in master `cd /tmp/dropbear && git tag | grep -E 'DROPBEAR_' | sort -rn`; do
year=$(echo "$ver" | cut -f2 -d_ | cut -f1 -d.)
if [ "$ver" != "master" ] && [ "$year" -lt "2020" ]; then
exit 0
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list