Commit f1cb7eff authored by Luke Bailey's avatar Luke Bailey
Browse files

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.
parent a8f6f582
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
          '';