Merge pull request #268 from versity/auke/dont_use_bash_special_stdfiles

Avoid using bash special device nodes.
This commit is contained in:
Zach Brown
2025-12-08 09:47:19 -08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@
echo "$0 running rid '$SCOUTFS_FENCED_REQ_RID' ip '$SCOUTFS_FENCED_REQ_IP' args '$@'"
echo_fail() {
echo "$@" >> /dev/stderr
echo "$@" >&2
exit 1
}

View File

@@ -7,7 +7,7 @@ message_output()
error_message()
{
message_output "$@" >> /dev/stderr
message_output "$@" >&2
}
error_exit()