We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0976e33 commit b2e4348Copy full SHA for b2e4348
main.go
@@ -226,6 +226,11 @@ func loop() {
226
if runtime.GOOS == "darwin" {
227
if exist, err := installCertsKeyExists(configPath.String()); err != nil {
228
log.Panicf("config.ini cannot be parsed: %s", err)
229
+ } else if config.CertsExist() {
230
+ err = config.SetInstallCertsIni(configPath.String(), "true")
231
+ if err != nil {
232
+ log.Panicf("config.ini cannot be parsed: %s", err)
233
+ }
234
} else if !exist {
235
if cert.PromptInstallCertsSafari() {
236
err = config.SetInstallCertsIni(configPath.String(), "true")
0 commit comments