Skip to content
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

Virtualenv relocation fixes #2442

Merged
merged 5 commits into from
Apr 5, 2017

Commits on Apr 2, 2017

  1. Don't follow symlinks when hunting for strings

    When we're assessing whether a bottle is relocatable, we shouldn't have
    to descend into symlink paths we encounter. This is supposed to be the
    default behavior but it doesn't appear to be (perhaps because we pass a
    symlink to the keg on the command line?).
    
    All of the switches that control this behavior differ between BSD and
    GNU grep, so sniff the grep flavor first.
    tdsmith committed Apr 2, 2017
    Configuration menu
    Copy the full SHA
    51c4c84 View commit details
    Browse the repository at this point in the history
  2. Unlink before rewriting link

    ln_sf does the right thing when `dest` is a symlink pointing to a file:
    the symlink gets overwritten with a link pointing to the new src. But
    when dest points to a directory, we create a new symlink inside the
    folder dest points to, which doesn't help us at all.
    tdsmith committed Apr 2, 2017
    Configuration menu
    Copy the full SHA
    d0feae0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2f4eaf2 View commit details
    Browse the repository at this point in the history
  4. rubocop

    tdsmith committed Apr 2, 2017
    Configuration menu
    Copy the full SHA
    3b75075 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2017

  1. Configuration menu
    Copy the full SHA
    2144c35 View commit details
    Browse the repository at this point in the history