Skip to content

Commit

Permalink
Merge pull request #263 from ceremcem/patch-1
Browse files Browse the repository at this point in the history
Support MSYS2
  • Loading branch information
ekalinin authored Aug 6, 2020
2 parents f6ef57a + 73bb52d commit 9c1691c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

is_PY3 = sys.version_info[0] >= 3
is_WIN = platform.system() == 'Windows'
is_CYGWIN = platform.system().startswith('CYGWIN')
is_CYGWIN = platform.system().startswith(('CYGWIN', 'MSYS'))

ignore_ssl_certs = False

Expand Down

0 comments on commit 9c1691c

Please sign in to comment.