Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upMake rustup update when specific version not present. #761
Conversation
|
r? @metajack |
|
This current solution will cause new machines to fail to bootstrap if rustup publishes a newer version than 1.7.0. |
|
I don’t think we should be in the business of hosting rustup binaries. We can parse the output of |
|
Something like… - - unless: rustup --version | grep '{{ rustup.version }}'
+ - unless: rustup --version | python -c 'import sys, re; [int(i) for i in re.match("rustup (\d+).(\d+).(\d+) ", sys.stdin.read()).groups()] >= [1, 7, 0] or sys.exit(1)' |
|
|
jdm commentedDec 8, 2017
•
edited by larsbergstrom
This PR causes us to update to the most recent release of rustup, as a result.
This change is