Skip to content

Commit

Permalink
fix case sensitive bintray user name
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobiasd committed Feb 16, 2018
1 parent 0dc56fc commit f3163ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conan_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
if not version:
version = "dev"
reference = "functionalplus/%s" % version
username = "Dobiasd"
username = "dobiasd"
channel = "stable"
upload_remote = "https://api.bintray.com/conan/Dobiasd/public-conan" if version is not "dev" else None
upload_remote = "https://api.bintray.com/conan/dobiasd/public-conan" if version is not "dev" else None

print("Conan package metadata:", reference, username, channel, upload_remote)

Expand Down

0 comments on commit f3163ba

Please sign in to comment.