Modify ↓
Opened 13 years ago
Closed 9 years ago
#9657 closed defect (wontfix)
GitPlugin crashed under Win7 while using cygwin
Reported by: | anonymous | Owned by: | Herbert Valerio Riedel |
---|---|---|---|
Priority: | normal | Component: | GitPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
GitCores
__pipe
function did not recognise, that I was working on windows.
To solve the problem, I locally changed the platform selection from
if sys.platform == "win32":
to
if sys.platform == "win32" or sys.platform == "cygwin":
This works while running cygwin on a 64bit Windows 7.
Attachments (1)
Change History (3)
Changed 13 years ago by
Attachment: | PyGIT.py.diff added |
---|
comment:1 Changed 13 years ago by
Note that this change also works for Cygwin running on Windows Server 2008 R2.
comment:2 Changed 9 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
GitPlugin is deprecated. Please upgrade to Trac 1.0 and use TracGit.
Note: See
TracTickets for help on using
tickets.
Patch for PyGIT.py (for those who didn't know exactly where to make the change proposed in the original ticket description).