Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 56c8a88

Browse files
Restore commented-out tasks in ImportCommand to re-enable cleanup, download, extract, and release operations.
1 parent e516192 commit 56c8a88

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

app/Console/Commands/OrcaSlicer/ImportCommand.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ public function handle(
2424
NozzleService $nozzle,
2525
FilamentTypeService $filament,
2626
): void {
27-
//$this->components->task('Clean up', fn () => $download->cleanup());
28-
//$this->components->task('Download', fn () => $download->download());
29-
//$this->components->task('Extract', fn () => $download->extract());
30-
//$this->components->task('Release', fn () => $download->release());
27+
$this->components->task('Clean up', fn () => $download->cleanup());
28+
$this->components->task('Download', fn () => $download->download());
29+
$this->components->task('Extract', fn () => $download->extract());
30+
$this->components->task('Release', fn () => $download->release());
31+
3132
$this->components->task('Import map', fn () => $map->import());
3233
$this->components->task('Import machines', fn () => $machine->import());
3334
$this->components->task('Import nozzles', fn () => $nozzle->import());

0 commit comments

Comments
 (0)