Unverified Commit b376e679 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

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

parents 951fb7ac f1cb7eff
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
          '';