File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -189,11 +189,11 @@ def default_build_triple(verbose):
189
189
host = next (x for x in version .split ('\n ' ) if x .startswith ("host: " ))
190
190
triple = host .split ("host: " )[1 ]
191
191
if verbose :
192
- print ("detected default triple {}" .format (triple ))
192
+ print ("detected default triple {} from pre-installed rustc " .format (triple ))
193
193
return triple
194
194
except Exception as e :
195
195
if verbose :
196
- print ("rustup not detected: {}" .format (e ))
196
+ print ("pre-installed rustc not detected: {}" .format (e ))
197
197
print ("falling back to auto-detect" )
198
198
199
199
required = sys .platform != 'win32'
@@ -727,11 +727,11 @@ def maybe_download_ci_toolchain(self):
727
727
if status != 0 :
728
728
if download_rustc == "if-unchanged" :
729
729
return None
730
- print ("warning: `download-rustc` is enabled, but there are changes to \
731
- compiler/ or library/" )
730
+ print ("warning: `download-rustc` is enabled, but there are changes to " \
731
+ " compiler/ or library/" )
732
732
733
733
if self .verbose :
734
- print ("using downloaded stage1 artifacts from CI (commit {})" .format (commit ))
734
+ print ("using downloaded stage2 artifacts from CI (commit {})" .format (commit ))
735
735
self .rustc_commit = commit
736
736
# FIXME: support downloading artifacts from the beta channel
737
737
self .download_toolchain (False , "nightly" )
You can’t perform that action at this time.
0 commit comments