Sublime Text SecTrustSettingsCopyCertificates: No trust settings found

Sometimes I run this error when using sublime:

Package management

Runtime Error: / usr / bin / security dump-trust-settings -d

SecTrustSettingsCopyCertificates: No trust settings.

VCS-based packages can be ignored using the "ignore_vcs_packages" installation.

I added "ignore_vcs_packages": true, to the package management settings that still do not work.

I am using Yosemite and Sublime Text 3.

What should I do?

+5
source share
3 answers

See the problem here

https://github.com/wbond/package_control/issues/1002

in short - yes, this is due to trust issues.

+2
source

this is a package management error that occurs when you do not have a certificate file, and cause Package Control not to update itself to fix this error.

A quick fix is ​​to have a dummy certificate file using the security command:

 sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/Downloads/localhost.cert 

You can create a dummy certificate this tool

Then restart sublime and force update Package Management manually with ⌘ ^ P

+1
source

I have found a solution. Remove package management. Manually install it. remove package management from ignored_packages. Here it is.

0
source

Source: https://habr.com/ru/post/1216051/


All Articles