From 00daada98452cee88215b06ff87f5cf27ef7d79f Mon Sep 17 00:00:00 2001 From: akash-akya Date: Wed, 5 Nov 2025 08:54:28 +0530 Subject: [PATCH] Skip non-existent directories --- lib/exsync/config.ex | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/exsync/config.ex b/lib/exsync/config.ex index 173fac6..3fcbc1f 100644 --- a/lib/exsync/config.ex +++ b/lib/exsync/config.ex @@ -37,6 +37,7 @@ defmodule ExSync.Config do Mix.Project.in_project(app, path, config, fn _ -> beam_dirs() end) end) + |> Enum.filter(&File.exists?/1) # Elixir 1.15/OTP 26 compiles into the project build_path, but # we append dep_paths to support earlier versions