We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
schema/
1 parent 0f1d93f commit 9a85761Copy full SHA for 9a85761
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