Modify

Opened 12 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)

PyGIT.py.diff (454 bytes) - added by Dave 12 years ago.
Patch for PyGIT.py (for those who didn't know exactly where to make the change proposed in the original ticket description).

Download all attachments as: .zip

Change History (3)

Changed 12 years ago by Dave

Attachment: PyGIT.py.diff added

Patch for PyGIT.py (for those who didn't know exactly where to make the change proposed in the original ticket description).

comment:1 Changed 12 years ago by Dave

Note that this change also works for Cygwin running on Windows Server 2008 R2.

comment:2 Changed 9 years ago by Ryan J Ollos

Resolution: wontfix
Status: newclosed

GitPlugin is deprecated. Please upgrade to Trac 1.0 and use TracGit.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Herbert Valerio Riedel.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.