Disable caching and prompt for sudo call

This commit is contained in:
maximilionus 2025-07-27 19:27:00 +03:00
parent 653df33236
commit 7acd5b0b1f

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());