Skip to content

Actually disable ssl when on windows (Cygwin) #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from

Conversation

ed7coyne
Copy link

4865ed0 says it disables on windows but does the opposite. python in cygwin says it can't find "ssl".

espressif@4865ed0 says it disables on windows but does the opposite. python in cygwin says it can't find "ssl".
@@ -71,13 +71,13 @@ def get_tool(tool):
local_path = dist_dir + archive_name
url = tool['url']
#real_hash = tool['checksum'].split(':')[1]
if 'CYGWIN_NT' in sys_name:
if 'CYGWIN_NT' not in sys_name:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but this will disable SSL check on all other OSs. Maybe you need to install something to get it going?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah I missunderstood what was going on here, I assumed the starting state before 4865ed0 was "ssl is enabled" but I see now you are correct it was disabled beforehand and that commit made it disabled only for windows. My mistake, sorry.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also as a datapoint while trying to determine how to get this script working for everyone. The script is broken on a clean install of "babun" (cygwin distro) on windows 10 but works if you follow the "not cygwin" path, i.e. with these changes.

@ed7coyne ed7coyne closed this Nov 13, 2016
brentru pushed a commit to adafruit/arduino-esp32 that referenced this pull request Oct 22, 2024
* Note about installing multiple libraries

* "Hack" on how to install external libraries
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants