buildMix: use . instead of glob pattern for copying source (#408195)

This commit is contained in:
Adam C. Stephens
2025-05-18 19:34:45 -04:00
committed by GitHub
+1 -1
View File
@@ -124,7 +124,7 @@ let
# phoenix applications need the source of phoenix and phoenix_html to
# build javascript and css assets.
mkdir -p $out/src
cp -r $src/* "$out/src"
cp -r "$src/." "$out/src"
runHook postInstall
'';