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 cda3bacCopy full SHA for cda3bac
main.go
@@ -227,7 +227,12 @@ func loop() {
227
if exist, err := installCertsKeyExists(configPath.String()); err != nil {
228
log.Panicf("config.ini cannot be parsed: %s", err)
229
} else if !exist {
230
- if cert.PromptInstallCertsSafari() {
+ if config.CertsExist() {
231
+ err = config.SetInstallCertsIni(configPath.String(), "true")
232
+ if err != nil {
233
+ log.Panicf("config.ini cannot be parsed: %s", err)
234
+ }
235
+ } else if cert.PromptInstallCertsSafari() {
236
err = config.SetInstallCertsIni(configPath.String(), "true")
237
if err != nil {
238
0 commit comments