Skip to content

Commit 7464e23

Browse files
Test on CI
1 parent 84687f8 commit 7464e23

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func loop() {
224224
if runtime.GOOS == "darwin" {
225225
if value, err := valueIni(configPath.String()); err != nil {
226226
log.Panicf("config.ini cannot be parsed: %s", err)
227-
} else if !value && cert.PromptInstallCertsSafari() {
227+
} else if !value {
228228
err = modifyIni(configPath.String())
229229
if err != nil {
230230
log.Panicf("config.ini cannot be parsed: %s", err)
@@ -357,7 +357,8 @@ func loop() {
357357
// check if the certificates are expired and prompt the user to update them on macOS
358358
if runtime.GOOS == "darwin" {
359359
if *installCerts {
360-
cert.PromptExpiredCerts(config.GetCertificatesDir())
360+
log.Println("Certificates installed.")
361+
//cert.PromptExpiredCerts(config.GetCertificatesDir())
361362
}
362363
}
363364

0 commit comments

Comments
 (0)