Unverified Commit 3eff4555 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

ants: don't overwrite PATH in wrapper (#391624)

parents d29a1b73 07a1d554
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {

  postInstall = ''
    for file in $out/bin/*; do
      wrapProgram $file --set PATH "$out/bin"
      wrapProgram $file --prefix PATH : "$out/bin"
    done
  '';