2
0
老九 3 жил өмнө
parent
commit
5e8f920ada

+ 1 - 1
FastGithub.HttpServer/CaCertInstallerOfLinuxDebian.cs

@@ -4,7 +4,7 @@ namespace FastGithub.HttpServer
 {
     sealed class CaCertInstallerOfLinuxDebian : CaCertInstallerOfLinux
     {
-        protected override string CaCertUpdatePath => "/bin/update-ca-certificates";
+        protected override string CaCertUpdatePath => "/usr/sbin/update-ca-certificates";
 
         protected override string CaCertStorePath => "/usr/local/share/ca-certificates";
 

+ 1 - 1
FastGithub.HttpServer/CaCertInstallerOfLinuxRedHat.cs

@@ -4,7 +4,7 @@ namespace FastGithub.HttpServer
 {
     sealed class CaCertInstallerOfLinuxRedHat : CaCertInstallerOfLinux
     {
-        protected override string CaCertUpdatePath => "/bin/update-ca-trust";
+        protected override string CaCertUpdatePath => "/usr/bin/update-ca-trust";
 
         protected override string CaCertStorePath => "/etc/pki/ca-trust/source/anchors";