You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding a Github repo does not add an [sources] entry in the Project.toml, leading to an unhelpful error message. This happens both in Pkg REPL mode and in API mode.
MWE:
mkdir {A,B}
cd A
julia -e 'import Pkg; Pkg.activate("."); Pkg.add(url="https://github.com/tlienart/Xranklin.jl.git")'cd ../B
cp ../A/Project.toml .
julia --project=@. -e 'import Pkg; Pkg.instantiate()'
throws a pkgerror:
ERROR: expected package `Xranklin [558449b0]` to be registered
The text was updated successfully, but these errors were encountered:
Adding a Github repo does not add an
[sources]
entry in the Project.toml, leading to an unhelpful error message. This happens both in Pkg REPL mode and in API mode.MWE:
throws a
pkgerror
:The text was updated successfully, but these errors were encountered: