improvement: use path: prefix instead of local:

This commit is contained in:
Zach Daniel 2024-06-13 11:05:11 -04:00
parent 11149c94e1
commit 60b81273cb
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@ defmodule Igniter.Install do
[github: requirement]
end
"local:" <> requirement ->
"path:" <> requirement ->
[path: requirement]
version ->

View file

@ -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