KonnexionsGmbH / OraLixir

Oracle driver for Elixir
Other
2 stars 4 forks source link

Unable to pull OraLixir dependency with tag: 0.1.0 #2

Closed cruzfarfan closed 4 years ago

cruzfarfan commented 5 years ago

Specifying:

  defp deps do
    [
      {:oralixir, git: "https://github.com/c-bik/OraLixir", tag: "0.1.0"}
    ]
  end

and running mix deps.get results in the following error: "error: pathspec '0.1.0' did not match any file(s) known to git."

I was able to download OraLixir after removing the tag:

  defp deps do
    [
      {:oralixir, git: "https://github.com/c-bik/OraLixir"}
    ]
  end