5

Sometimes I run on this error when using sublime:

Package Control

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

SecTrustSettingsCopyCertificates: No Trust Settings were found.

VCS-based packages can be ignored with the "ignore_vcs_packages" setting.

I've added "ignore_vcs_packages": true, to package control settings its still not working.

I'm using Yosemite and Sublime Text 3.

What should I do?

Andrey Korneyev
  • 26,353
  • 15
  • 70
  • 71
rahmat
  • 1,727
  • 16
  • 35

3 Answers3

2

See the issue here

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

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

flip
  • 235
  • 1
  • 10
1

this is bug in Package Control which happen when you doesn't have any certificate file and cause Package Control to not update itself to fix this bug.

The quick fix is to had a dummy cert file with the security command:

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

You can generate a dummy certificate with this tool

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

felixyadomi
  • 3,197
  • 1
  • 22
  • 28
0

I've found the solution. Remove package control. Manually install it. remove package control from ignored_packages. Thats it.

rahmat
  • 1,727
  • 16
  • 35
  • I got the following error message: `Package Control No list of preferred downloaders specified in the "downloader_precedence" setting for the platform "osx"` I had to restart ST3, it works now. – Alfred Bez Mar 27 '15 at 12:49