File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ func loop() {
224
224
if runtime .GOOS == "darwin" {
225
225
if value , err := valueIni (configPath .String ()); err != nil {
226
226
log .Panicf ("config.ini cannot be parsed: %s" , err )
227
- } else if ! value && cert . PromptInstallCertsSafari () {
227
+ } else if ! value {
228
228
err = modifyIni (configPath .String ())
229
229
if err != nil {
230
230
log .Panicf ("config.ini cannot be parsed: %s" , err )
@@ -357,7 +357,8 @@ func loop() {
357
357
// check if the certificates are expired and prompt the user to update them on macOS
358
358
if runtime .GOOS == "darwin" {
359
359
if * installCerts {
360
- cert .PromptExpiredCerts (config .GetCertificatesDir ())
360
+ log .Println ("Certificates installed." )
361
+ //cert.PromptExpiredCerts(config.GetCertificatesDir())
361
362
}
362
363
}
363
364
You can’t perform that action at this time.
0 commit comments