moriation
moriation

Reputation: 13

Patching bazaar explorer

In launching bazar explorer in macosx, a common error arises when i try to view the repository, it say "too many files", a solution has been posted by using a patch over at bazars website (https://bugs.launchpad.net/bzr-explorer/+bug/926439)

.... My question is how do you exactly patch them? I typed "bzr patch " but errors occured, am i missing something here?

Upvotes: 0

Views: 97

Answers (1)

dOxxx
dOxxx

Reputation: 1539

The patch applies to the source code of bzr-explorer. You would have to download the source, apply the patch to that and then install it from the patched source.

In detail:

  1. Download bzr-explorer and the patch.
  2. Extract bzr-explorer into a directory which you can access easily from Terminal.
  3. Copy the downloaded patch file into the same directory.
  4. Open Terminal and change to that directory.
  5. Execute the following commands:

    patch < workaround-926439.patch

    python setup.py install

Upvotes: 2

Related Questions