File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ jobs:
109109 - run : Get-MpComputerStatus
110110 shell : powershell
111111
112+ - run : ls -al
113+
112114 # Rust Log Analyzer can't currently detect the PR number of a GitHub
113115 # Actions build on its own, so a hint in the log message is needed to
114116 # point it in the right direction.
Original file line number Diff line number Diff line change @@ -1002,6 +1002,9 @@ def build_bootstrap_cmd(self, env):
10021002 env ["PATH" ] = os .path .join (self .bin_root (), "bin" ) + \
10031003 os .pathsep + env ["PATH" ]
10041004 if not os .path .isfile (self .cargo ()):
1005+ parent = os .path .dirname (self .cargo ())
1006+ subprocess .run (['ls' , '-al' ])
1007+ subprocess .run (['ls' , '-al' , parent ])
10051008 raise Exception ("no cargo executable found at `{}`" .format (
10061009 self .cargo ()))
10071010 args = [self .cargo (), "build" , "--manifest-path" ,
You can’t perform that action at this time.
0 commit comments