-
Notifications
You must be signed in to change notification settings - Fork 665
Description
The appveyor badge on https://crates.io/crates/erlang_nif-sys does not load, however the link does work when clicked.
The problem is that the link to the appveyor project requires underscores converted to dashes, but the link to the badge requires an unmangled name. The current crates.io code appears to use the same name for both.
I currently use a premangled repository name in the badges section:
[badges]
travis-ci = { repository = "goertzenator/erlang_nif-sys" }
appveyor = { repository = "goertzenator/erlang-nif-sys" }
The resulting broken badge URL
https://ci.appveyor.com/api/projects/status/github/goertzenator/erlang-nif-sys?svg=true&branch=master
The corrected URL is:
https://ci.appveyor.com/api/projects/status/github/goertzenator/erlang_nif-sys?svg=true&branch=master
I expect I could make the badge image to work by changing the badge setting to appveyor = { repository = "goertzenator/erlang_nif-sys" }
, but then the link would break. I think both should work.