-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[installer] require rustup on the system #4668
base: master
Are you sure you want to change the base?
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ main() { | |
need_cmd rm | ||
need_cmd sed | ||
need_cmd grep | ||
need_cmd rustup | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given that we're now telling devs that need to install There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. evne thought the docs state to install it, if a dev does not have it installed the platform tools code will silently fail to create the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Edit: My previous wording in this comment was unclear.What is the result of this change ? Will |
||
|
||
for arg in "$@"; do | ||
case "$arg" in | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the added bit about developing programs, this sentence sounds a little "off" to me now. What do you think about flipping it around:
Looking in this file, I see several other sentences that start with "Install Y
instead of
Before X, install Y` so I think my suggestion would make this line more consistent with the overall docThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
works for me