Skip to content

Commit 01dac9a

Browse files
committed
Normalize local dependency source paths
1 parent 8abbeb6 commit 01dac9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build_support/dependency_sources.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ defmodule DependencySources do
148148
path =
149149
if is_list(path), do: Enum.find(path, &File.exists?(Path.expand(&1, repo_root))), else: path
150150

151-
{app, Keyword.merge([path: path], dep_options(config, extra_opts))}
151+
{app, Keyword.merge([path: Path.expand(path, repo_root)], dep_options(config, extra_opts))}
152152
end
153153

154154
defp dep_tuple(app, config, :github, _repo_root, override, extra_opts) do

0 commit comments

Comments
 (0)