Skip to content

Commit

Permalink
improvement: use path: prefix instead of local:
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jun 13, 2024
1 parent 11149c9 commit 60b8127
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/install.ex
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ defmodule Igniter.Install do
[github: requirement]
end

"local:" <> requirement ->
"path:" <> requirement ->
[path: requirement]

version ->
Expand Down
2 changes: 1 addition & 1 deletion lib/mix/tasks/igniter.install.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule Mix.Tasks.Igniter.Install do
if it is specific, like `3.0.1`, it will be pinned at that *exact* version with `==`.
* `package@git:git_url` - The package will be installed from the specified git url.
* `package@github:project/repo` - The package will be installed from the specified github repo.
* `package@local:path/to/local` - The package will be installed from the specified local path.
* `package@path:path/to/dep` - The package will be installed from the specified path.
## Switches
Expand Down

0 comments on commit 60b8127

Please sign in to comment.