From 56c8a88a073725086239c072480cbacac268b677 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Sun, 4 Jan 2026 01:20:06 +0300 Subject: [PATCH] Restore commented-out tasks in `ImportCommand` to re-enable cleanup, download, extract, and release operations. --- app/Console/Commands/OrcaSlicer/ImportCommand.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/Console/Commands/OrcaSlicer/ImportCommand.php b/app/Console/Commands/OrcaSlicer/ImportCommand.php index 4d63896..c36d602 100644 --- a/app/Console/Commands/OrcaSlicer/ImportCommand.php +++ b/app/Console/Commands/OrcaSlicer/ImportCommand.php @@ -24,10 +24,11 @@ public function handle( NozzleService $nozzle, FilamentTypeService $filament, ): void { - //$this->components->task('Clean up', fn () => $download->cleanup()); - //$this->components->task('Download', fn () => $download->download()); - //$this->components->task('Extract', fn () => $download->extract()); - //$this->components->task('Release', fn () => $download->release()); + $this->components->task('Clean up', fn () => $download->cleanup()); + $this->components->task('Download', fn () => $download->download()); + $this->components->task('Extract', fn () => $download->extract()); + $this->components->task('Release', fn () => $download->release()); + $this->components->task('Import map', fn () => $map->import()); $this->components->task('Import machines', fn () => $machine->import()); $this->components->task('Import nozzles', fn () => $nozzle->import());