From 0fe42d41d649d7cc690b85686b5db4ce4b653c46 Mon Sep 17 00:00:00 2001 From: Haruue Icymoon Date: Mon, 11 Sep 2023 14:46:11 +0800 Subject: [PATCH] fix(scripts): bash also uses /proc/self/fd ... instead of /dev/fd for <(...) ref: https://github.com/apernet/hysteria/issues/678 --- scripts/install_server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_server.sh b/scripts/install_server.sh index e66cbbb..95a7964 100644 --- a/scripts/install_server.sh +++ b/scripts/install_server.sh @@ -294,7 +294,7 @@ rerun_with_sudo() { local _target_script - if has_prefix "$0" "/dev/fd/"; then + if has_prefix "$0" "/dev/" || has_prefix "$0" "/proc/"; then local _tmp_script="$(mktemp)" chmod +x "$_tmp_script"