From f8316b25b592308c8bc334fcc3f3d457ad0bca42 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Wed, 10 Jul 2024 09:59:52 -0300 Subject: [PATCH] docs: fix readme premix compilation --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d01b66b..222d008 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,9 @@ so that some mix env vars are properly set based on the `BLEND` env var before r ```diff # mix.exs -+Code.compile_file("blend/premix.exs") ++if File.exists?("blend/premix.exs") do ++ Code.compile_file("blend/premix.exs") ++end defmodule YourApp.MixProject do ...