Skip to content

Commit 21c3e8d

Browse files
committed
Missing file?
1 parent f16932b commit 21c3e8d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff 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.

src/bootstrap/bootstrap.py

+3
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)