I started working on a package locally ("FitProcessConvolutions"). I now
get an error whenever I try to `Pkg.update()`:
julia> Pkg.update()
INFO: Updating METADATA...
fatal: 'FitProcessConvolutions' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
ERROR: failed process: Process(`git pull --rebase -q`, ProcessExited(1)) [1]
in pipeline_error at process.jl:555
in run at process.jl:531
in anonymous at pkg/entry.jl:283
in withenv at env.jl:160
in anonymous at pkg/entry.jl:282
in cd at ./file.jl:22
in update at ./pkg/entry.jl:272
in anonymous at pkg/dir.jl:31
in cd at file.jl:22
in cd at pkg/dir.jl:31
in update at ./pkg.jl:45
I've tried deleting the folder from `~/.julia/v0.4/`, and I still get the
error. I've also used `Pkg.init()` to create a clean version.
`Pkg.installed("FitProcessConvolutions")` gives:
julia> Pkg.installed("FitProcessConvolutions")
ERROR: FitProcessConvolutions is not a package (not registered or installed)
in installed at pkg/entry.jl:110
in anonymous at pkg/dir.jl:31
in cd at file.jl:22
in cd at pkg/dir.jl:31
in installed at pkg.jl:29
Am I missing a reference to it somewhere? What do I need to fix to update
my packages successfully?
Thanks,
John Best