Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: aae4c114a4f8
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 44f05df20bd5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 3, 2019

  1. nukeReferences: fix for store paths with special characters (like '+'…

    … or '.')
    
    This introduces extra escaping for $NIX_STORE that gets interpolated
    into a PCRE. The escaping is performed using a standard Perl function
    "quotemeta" (see "perldoc -f quotemeta" for reference). The same value
    is also used in sed regex which uses POSIX basic regular expressions
    instead of PCRE, so it needs fewer characters to be escaped. It should
    not cause much problem to not change sed invocation, but I replace it
    with equivalent Perl expression (actually the behavior is changed to not
    output a newline character after the matched output).
    veprbl committed May 3, 2019
    Copy the full SHA
    fdada4a View commit details
    Browse the repository at this point in the history

Commits on May 23, 2019

  1. Merge pull request #60877 from veprbl/pr/nuke-refs-quotemeta-fix

    nukeReferences: fix for store paths with special characters
    veprbl committed May 23, 2019
    Copy the full SHA
    44f05df View commit details
    Browse the repository at this point in the history