buildMix: use . instead of glob pattern for copying source
buildMix currently uses $src/* when copying source files into $out. However, this does not include important hidden files like `.formatter.exs` which contains custom package formatters, for example.
This commit is contained in:
@@ -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
|
||||
'';
|
||||
|
||||
Reference in New Issue
Block a user