Skip to content

Commit

Permalink
Update mix.exs source url (#99)
Browse files Browse the repository at this point in the history
Hex was linking to the wrong spot, so I updated it to be the right one.
  • Loading branch information
jeregrine authored Aug 30, 2023
1 parent e951c6d commit 8fc4430
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/elixir/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule SqliteVss.MixProject do
use Mix.Project

@source_url "https://github.com/asg017/sqlite-vss/bindings/elixir"
@source_url "https://github.com/asg017/sqlite-vss/tree/main/bindings/elixir"
@version File.read!(Path.expand("./VERSION", __DIR__)) |> String.trim()

def project do
Expand All @@ -12,8 +12,8 @@ defmodule SqliteVss.MixProject do
start_permanent: Mix.env() == :prod,
deps: deps(),
name: "sqlite_vss",
source_url: "https://github.com/asg017/sqlite-vss",
homepage_url: "https://github.com/asg017/sqlite-vss",
source_url: @source_url,
homepage_url: @source_url,
docs: [
main: "SqliteVss",
extras: ["README.md"],
Expand Down

0 comments on commit 8fc4430

Please sign in to comment.