We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8e53e3 + 9a85761 commit ce2fbc3Copy full SHA for ce2fbc3
flake.nix
@@ -411,7 +411,7 @@
411
in
412
nixpkgs.runCommand name env
413
''
414
- mkdir -p $out release
+ mkdir -p $out release/bin
415
cd release
416
417
# Copy exes to intermediate dir
@@ -420,7 +420,16 @@
420
--remove-destination \
421
--verbose \
422
${lib.concatMapStringsSep " " (exe: "${exe}/bin/*") exes} \
423
- ./
+ ./bin
424
+
425
+ # Copy magrations to intermediate dir
426
+ cp \
427
+ --no-clobber \
428
+ --remove-destination \
429
+ --verbose \
430
+ --recursive \
431
+ ${./schema} \
432
+ ./schema
433
434
# Rewrite libs on macos (from iohk-utils)
435
${lib.optionalString
0 commit comments