From 8872cc06077c9cd05faf4cb5b050f11684c2358d Mon Sep 17 00:00:00 2001 From: Valeriy Manzhos <47538801+InvisibleRain@users.noreply.github.com> Date: Mon, 6 Apr 2026 16:17:09 +0300 Subject: [PATCH] Use uid and gid instead of names --- package-debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-debian.sh b/package-debian.sh index 418c4039..6a1e9a64 100644 --- a/package-debian.sh +++ b/package-debian.sh @@ -294,7 +294,7 @@ download_hev_socks5_tunnel() { tmp="$(mktemp -d)" curl -fL "$url" -o "$tmp/$filename" # The file must be write-protected because of CAP_NET_ADMIN - install -m 544 -o v2rayn-core -g v2rayn-core "$tmp/$filename" "$outdir/hev-socks5-tunnel" + install -m 544 -o 785 -g 785 "$tmp/$filename" "$outdir/hev-socks5-tunnel" rm -rf "$tmp" }