Skip to content

Commit

Permalink
Update bench.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
benlower authored Apr 26, 2024
1 parent 62f9999 commit 85dcdc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
- name: Get data and update file
run: |
TEMP_FILE="/tmp/$(date +%s).tmp"
OUTPUT="$(node ./utils/GenerateLatestData.js 2>$TEMP_FILE)"
OUTPUT="$(node ./utils/GenerateLatestData.js 2>"$TEMP_FILE")"
if [[ -f "$TEMP_FILE" ]]; then
if [[ -s "$TEMP_FILE" ]]; then
# Read the file contents and echo them so they are captured by the GitHub Actions runner
while read -r line; do
echo "$line"
Expand Down

0 comments on commit 85dcdc6

Please sign in to comment.