actonlang / acton

The Acton Programming Language
https://www.acton-lang.org/
BSD 3-Clause "New" or "Revised" License
80 stars 7 forks source link

Let local dep path take precedence over URL #1910

Closed plajjan closed 2 months ago

plajjan commented 2 months ago

If a dependency is available both remotely as well as locally via a path, the local path should take precedence. A common scenario would be that the dependency normally is available as a download from the Internet but the user decides to fork the dependency and make changes to it. After cloning the repo, we can use the dependency just by updating the build.act.json and set the path to the local clone.

Fixes #1907