buildDartApplication: Add custom outputs to the end of the list

This commit is contained in:
hacker1024 2024-01-18 10:13:57 +11:00
parent ed2ea66bbf
commit 196a0a5b2d

View File

@ -87,7 +87,7 @@ let
dartCompileCommand dartOutputType dartRuntimeCommand dartCompileFlags
dartJitFlags;
outputs = args.outputs or [ ] ++ [ "out" "pubcache" ];
outputs = [ "out" "pubcache" ] ++ args.outputs or [ ];
dartEntryPoints =
if (dartEntryPoints != null)