Skip to content

Commit c8b468d

Browse files
committed
Tweak repro instructions
1 parent 18d9799 commit c8b468d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ ${fs.readFileSync(replayScriptPath, { encoding: "utf-8" }).split(/\r?\n/).slice(
306306
summary += `<li>Download user test <code>${repo.name}</code></li>\n`;
307307
}
308308
else {
309-
summary += `<li><code>git clone ${repo.url}</code></li>\n`;
309+
summary += `<li><code>git clone ${repo.url} --recurse-submodules</code></li>\n`;
310310

311311
try {
312312
console.log("Extracting commit SHA for repro steps");
@@ -318,7 +318,7 @@ ${fs.readFileSync(replayScriptPath, { encoding: "utf-8" }).split(/\r?\n/).slice(
318318
}
319319

320320
if (installCommands.length > 1) {
321-
summary += "<li><details><summary>Install packages</summary><ol>\n";
321+
summary += "<li><details><summary>Install packages (exact steps are below, but it might be easier to follow the repo readme)</summary><ol>\n";
322322
}
323323
for (const command of installCommands) {
324324
summary += ` <li>In dir <code>${path.relative(downloadDir, command.directory)}</code>, run <code>${command.tool} ${command.arguments.join(" ")}</code></li>\n`;

0 commit comments

Comments
 (0)