Unverified Commit 0e5891a0 authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

pngpaste: fix issue where file named bin was created (#415998)

parents a24dd47f 0b3d48d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ stdenv.mkDerivation (finalAttrs: {

  installPhase = ''
    runHook preInstall
    install -Dm555 pngpaste $out/bin
    install -Dm555 pngpaste $out/bin/pngpaste
    runHook postInstall
  '';