Disable caching and prompt for sudo call

pull/7658/head
maximilionus 2025-07-27 19:27:00 +03:00
parent 653df33236
commit 7acd5b0b1f
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ public class CoreAdminHandler
}
else
{
sb.AppendLine($"sudo -S {cmdLine}");
sb.AppendLine($"sudo -S -k -p '' {cmdLine}");
}
await File.WriteAllTextAsync(shFilePath, sb.ToString());