Bug fix for ProxySettingOSX
Some checks are pending
release Linux / build (Release) (push) Waiting to run
release macOS / build (Release) (push) Waiting to run
release Windows desktop (Avalonia UI) / build (Release) (push) Waiting to run
release Windows / build (Release) (push) Waiting to run

This commit is contained in:
2dust 2025-02-23 19:59:01 +08:00
parent 3edaac5739
commit 72ff947d95

View file

@ -28,11 +28,11 @@ namespace ServiceLib.Handler.SysProxy
{ {
var contents = EmbedUtils.GetEmbedText(Global.ProxySetOSXShellFileName); var contents = EmbedUtils.GetEmbedText(Global.ProxySetOSXShellFileName);
await File.AppendAllTextAsync(fileName, contents); await File.AppendAllTextAsync(fileName, contents);
await Utils.SetLinuxChmod(fileName);
} }
await Utils.SetLinuxChmod(fileName); await Utils.GetCliWrapOutput(fileName, args);
await Utils.GetCliWrapOutput(Global.LinuxBash, args);
} }
} }
} }