diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 8139785..ff3018b 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -44,7 +44,6 @@ jobs: # Delete the file rm "$FILE" - echo "File $FILE has been deleted." exit 1 elif [ -n "$OUTPUT" ]; then echo "$OUTPUT" > ./website/public/data/latest.json diff --git a/utils/GenerateLatestData.js b/utils/GenerateLatestData.js index e49f679..2aa9d03 100644 --- a/utils/GenerateLatestData.js +++ b/utils/GenerateLatestData.js @@ -39,6 +39,5 @@ async function fetchAndMergeFiles(date) { } // Example usage with the current date -// const currentDate = new Date().toISOString().split('T')[0]; // Format: YYYY-MM-DD -const currentDate = '2024-03-01'; +const currentDate = new Date().toISOString().split('T')[0]; // Format: YYYY-MM-DD fetchAndMergeFiles(currentDate);