vencord: fixup cp order, does not exist

This commit is contained in:
Xarvex
2025-04-27 04:51:45 -05:00
parent 75f676844c
commit 3e759afd5b
+1 -1
View File
@@ -66,8 +66,8 @@ stdenv.mkDerivation (finalAttrs: {
installPhase = ''
runHook preInstall
cp package.json $out # Presence is checked by Vesktop.
cp -r dist/${lib.optionalString buildWebExtension "chromium-unpacked/"} $out
cp package.json $out # Presence is checked by Vesktop.
runHook postInstall
'';