Skip to content

Commit

Permalink
FIX Stop using deprecated API (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Jan 7, 2025
1 parent 5989e77 commit 3087fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/tasks/FTFileMakerTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ protected function downloadFixtureFiles(PolyOutput $output)
$promises = [];
$paths = [];
foreach ($fixtureFileNames as $filename) {
$path = TEMP_FOLDER . '/' . $filename;
$path = TEMP_PATH . '/' . $filename;
$paths[$filename] = $path;
$url = "{$this->fixtureFileBaseUrl}/{$filename}";
if (!file_exists($path ?? '')) {
Expand Down

0 comments on commit 3087fdb

Please sign in to comment.