Last active
August 6, 2018 19:20
-
-
Save TheAngryByrd/52bff5cb8ec177ba694e to your computer and use it in GitHub Desktop.
Need to import the nuget certs on a linux machine to restore packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo mozroots --import --machine --sync | |
| sudo certmgr -ssl -m https://go.microsoft.com | |
| sudo certmgr -ssl -m https://nugetgallery.blob.core.windows.net | |
| sudo certmgr -ssl -m https://nuget.org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl https://curl.haxx.se/ca/cacert.pem > ~/cacert.pem && sudo cert-sync ~/cacert.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment