Unverified Commit c5ac6556 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

[Backport release-25.05] ente-desktop: fix literal inclusion of '$out' (#410215)



ente-desktop: fix literal inclusion of '$out' (#410214)

(cherry picked from commit 766a203a)

Co-authored-by: default avataroddlama <oddlama@oddlama.org>
parent 243c587a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
  # Path to vips (otherwise it looks within the electron derivation)
  postPatch = ''
    substituteInPlace src/main/services/image.ts src/main.ts \
      --replace-fail "process.resourcesPath" '"$out/share/ente-desktop/resources"'
      --replace-fail "process.resourcesPath" "\"$out/share/ente-desktop/resources\""
  '';

  postConfigure = ''