Reduce cache time and Remove chown

This commit is contained in:
Whispering Wind
2025-08-24 21:10:19 +03:30
committed by GitHub
parent f86d44ba1c
commit e58b3dc000
4 changed files with 2 additions and 6 deletions

View File

@ -15,7 +15,6 @@ compile_auth_binary() {
go mod init hysteria-auth >/dev/null 2>&1
go mod tidy >/dev/null 2>&1
if go build -o user_auth .; then
chown hysteria:hysteria user_auth
chmod +x user_auth
echo "Authentication binary compiled successfully."
else