Well, it is not that easy.
I did:
Pkg.tag("NaNMath",:minor)
which worked well.
Pkg.pubish() did not work.
First I had to do:
git config --global github.user ufechner7
which worked fine.
Than I had to do:
Pkg.add("JSON")
It would be nice if the error message of the missing JSON package would
come earlier, but OK.
But Pkg.publish() still fails:
julia> Pkg.publish()
INFO: Validating METADATA
INFO: Pushing NaNMath permanent tags: v0.1.0
Username for 'https://github.com': ufechner7
Password for 'https://[email protected]':
INFO: Submitting METADATA changes
INFO: Forking JuliaLang/METADATA.jl to ufechner7
INFO: Recompiling stale cache file /home/ufechner/.julia/lib/v0.4/Compat.ji
for module Compat.
Enter host password for user 'ufechner7':
INFO: Pushing changes as branch pull-request/d2ff6d30
Permission denied (publickey).
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
--work-tree=/home/ufechner/.julia/v0.4/METADATA
--git-dir=/home/ufechner/.julia/v0.4/METADATA/.git push -q
[email protected]:ufechner7/METADATA.jl.git
d2ff6d308410429da335674b372a763978d65bad:refs/heads/pull-request/d2ff6d30`,
ProcessExited(128)) [128]
in pipeline_error at process.jl:517
in run at process.jl:493
in pull_request at pkg/entry.jl:324
in publish at pkg/entry.jl:387
in anonymous at pkg/dir.jl:31
in cd at file.jl:22
in cd at pkg/dir.jl:31
in publish at pkg.jl:61
Any idea how to fix this?
Uwe
Am Samstag, 22. August 2015 19:04:30 UTC+2 schrieb Miles Lubin:
>
> Pkg.tag("NaNMath")
> Pkg.publish()
>
> is all you should have to do.
>