Skip to content

Commit 5bf06a1

Browse files
committed
MV fix
1 parent 436f6c0 commit 5bf06a1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

benchmarks/html-parsing/run.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
echo "::group::Setup"
22
gh release download -R denoland/deno -p "deno-x86_64-unknown-linux-gnu.*"
33
unzip deno-x86_64-unknown-linux-gnu.zip
4-
mv deno-x86_64-unknown-linux-gnu deno
4+
mv deno-x86_64-unknown-linux-gnu/deno deno
55
pwd >> "$GITHUB_PATH"
66
deno install
77
curl https://www.bbc.co.uk/news > corpus.html
88
echo "::endgroup::"
99

10-
echo "### Performance output" >> $GITHUB_STEP_SUMMARY
11-
echo "\`\`\`shell">> $GITHUB_STEP_SUMMARY
12-
deno bench comparison.ts >> $GITHUB_STEP_SUMMARY
13-
echo "\`\`\`">> $GITHUB_STEP_SUMMARY
10+
output="### Performance output
11+
12+
\`\`\`shell
13+
$(deno bench comparison.ts)
14+
\`\`\`"
15+
echo output >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)