Merge pull request #174948 from max-privatevoid/patch-7

matrix-appservice-discord: unquote ${nodejs.src}
This commit is contained in:
Sandro 2022-05-27 17:37:42 +02:00 committed by GitHub
commit 42d0d0683d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ assert lib.versionAtLeast nodejs.version "12.0.0";
let
nodeSources = runCommand "node-sources" {} ''
tar --no-same-owner --no-same-permissions -xf "${nodejs.src}"
tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
mv node-* $out
'';