Skip to content

Commit

Permalink
Fixed migrate service failing to build when the IHP app has no migrat…
Browse files Browse the repository at this point in the history
…ions yet
  • Loading branch information
mpscholten committed Jan 6, 2024
1 parent 378340a commit 8940e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NixSupport/nixosModules/services/migrate.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ in
src = cfg.migrations;
buildPhase = ''
mkdir -p $out/Application/Migration
cp $src/* $out/Application/Migration
find "$src" -mindepth 1 -type f -exec cp {} $out/Application/Migration \;
'';
};
in {
Expand Down

0 comments on commit 8940e30

Please sign in to comment.